I have a customer (athlete) table that is one row per customer. And a comms table, that logs when each customer posts something in our community (circle) via Zapier.
Then, in the customer table I use a rollup to display the date of each customer's last post.
The problem is I keep going around in circles trying to figure out how to link the 2 tables.
Each customer has a unique athleteID and circleID, so it should be circleID that is the link between the 2 tables (I think?). BUT when I add a row to the comms table, it looks like I need to know the athleteID too. Isn't the whole point that the circleID is the 1-to-many link between the 2 tables, and athleteID shouldn't need to feature in the comms table?
Is it because I'm trying to link tables on a field that isn't the primary key? And if so what's the best way of achieving what I need to?
Thanks!