Apr 20, 2023 12:20 AM
Hi,
I am currently tracking the number of people who has RSVP for an event.
The view is currently set up:
When I filter "Student RSVP is "Accepted", it spits out the records showing students who have accepted the invite but it does cover the case where if the student "Declined" and Supervisor "Accepted".
I also tried grouping them by Student RSVP and Supervisor RSVP. But we still need to calculate ourselves manually to confirm how many accepted, including the additional guest.
My question to the community is - is there a way I can better set it up so that I can instantly see a sum of those who have Accepted?
Thanks,
Eve
Apr 20, 2023 03:34 AM
Hi, I think that the best would be having a structure like this, with 4 different tables
This should be your REGISTRATIONS TABLE
and these the others 3 tables that are LINKED to REGISTRATIONS
EVENTS
STUDENTS
SUPERVISORS
of course, in each of this table you can add all the field that you need, like "email, phone, address" of Students and Supervisor or address of the Event...
then in the REGISTRATIONS table you can create alle the VIEWS that you need, this is a VIEW that shows only registrations where STUDENTS and SUPERVISOR RSVP are "Accepted"
RESULT IS:
I hope it's clear 🙂
Apr 21, 2023 01:12 AM
Hmm, I think I would just have a table called 'RSVP's or something where each record represented a single person, the single select option, the dietary requirement and the additional guest requirements. I'd then have another table for "People", and a junction table called "Nominee<>Supervisor" or something that would have two linked fields to the "People" table, and establish the relationship between nominees and supervisors there
This way you'd be able to see all the accepted numbers for the event easily. It also solves the potential problem of trying to figure out which person the dietary requirement is for
This is just a personal preference of mine though and I'm not sure what your workflow is. Personally, I like to keep the types of data in different tables (where possible), and it feels to me like you've got three types of data:
1. People
2. Nominee to Supervisor relationship between people
3. RSVPs
And potentially an "Events" data type as well to record the date / name of the event and such