I don’t think I’m thinking about this the right way…
I have two tables:
Events:
hostId, eventname, city
20, event1, helsinki
20, event2, stockholm
21, eventN, toronto
Hosts:
hostID, hostname, totalEvents
20, biff, count of all rows from event table where hostID = 20
21, biffette, count of all rows from event table where hostID = 21
No matter what I’ve tried to link, rollup, or count, the field in the Hosts table always shows 1.
I can easily generate this using a Pivot, but I want to use that summary data in other systems that I connect via Zapier.
For example, when a new event is scheduled I want to send a notification to another system to say "congrats to {host} on scheduling their {countOfEvents} event!