Aug 24, 2023 04:05 PM
I have a base to manage volunteers and volunteer events. There's a Volunteers table to store volunteer information (name, email, phone, etc.). There's an Events table with details about volunteer events. There's a table called Volunteer Signups that shows which volunteers are signed up for which events.
I use a form to register new or returning volunteers. The form fills in the details on the Volunteer Signups table. An automation then creates a new record in the Volunteers table if the volunteer's email is not in the system yet. If the email is in the system, a new Volunteers record is not created.
Returning volunteers will then have multiple events listed on the Volunteer Signups table, one for each event they have signed up for over time. I want to have a linked record in the Volunteers table that shows only the most recent event they have signed up for. Right now I'm only able to show the first event they signed up for, not any subsequent events. What do I need to change to achieve this?
Aug 24, 2023 11:24 PM
Hi @seanwhitcomb,
Rollups, formulas and automations should do the trick, from what I understand from your description here is what I would do:
Create the following fields in your Volunteers table :
Create the following fields in your Volunteers Signups table :
Set up an automation that will
And that should work for you.
Hope it helps!
Aug 25, 2023 05:04 AM - edited Aug 25, 2023 05:05 AM
@seanwhitcomb All you need is a lookup field if your linked records are displaying in the proper order. You can create a lookup field and then enable the option to show only the last 1 event.
Aug 25, 2023 05:16 AM
My assumption was that a link field was specifically required
Aug 25, 2023 05:18 AM
Yes, a linked record field is required to have a lookup field. If the records are linked in the right order, lookup fields now offer the ability to display the last X linked records.
Aug 25, 2023 12:46 PM - edited Aug 25, 2023 12:51 PM
This is pretty close to how I have things set up, but here's the problem I have:
Jack Smith signed up for the April 2023 volunteer event. There is one record in the Volunteer Signups table for "Jack Smith - April 2023". Jack Smith then signs up for the September 2023 event. There is now a separate record for "Jack Smith - September 2023".
I want the Volunteers table to list all events Jack has signed up for, but it only lists the first one. Any subsequent entries for a returning volunteer are ignored. This is because I wanted to eliminate duplicate entries for volunteers in the Volunteers table. But I still want to link to the events for each user.
I don't know how to tell Airtable that the same Jack Smith signed up for two different events. I assume I can use the email address to link the two Volunteer Signups records together, but I don't know how to do this.