Help

Re: Automating Rollup

Solved
Jump to Solution
801 0
cancel
Showing results for 
Search instead for 
Did you mean: 
ATOLYE_Global
4 - Data Explorer
4 - Data Explorer

Hello I need some help with the Rollup,

I have two tables: Points Tracker and Members

In the Points Tracker table, there are 3 columns: Member Email, Event Name, Points.
Whenever someone joins an event, we get their email and the name of the event that they joined and based on the event name they got different points. Same people can join multiple events and collect points from each event such as:

first @gmail.com - Event1 - 15 Points
second @gmail.com - Event1 - 15 Points
first @gmail.com - Event 2 - 10 Points

The Members table has two columns: Member Email and Points
What I’m trying to do is to feed the Members table back with the sum of the Points a member got looking at the Points Tracker table:

first@gmail.com - 25 Points

I used Roll Up in the Members table but I need to manually select the related records anytime there is a new record in the Points Tracker table. For example, in order to deduct 25 points for the first member, I manually selected first@gmail.com - Event1 - 15 Points and first@gmail.com - Event 2 - 10 Points.

Is there a way to automate this (with or without scripts) so that whenever there is a new record in Points Tracker with the email of the first member it automatically updates the total points the first member got in the Members table?

Thank you!

1 Solution

Accepted Solutions
ScottWorld
18 - Pluto
18 - Pluto

Welcome to the community, @ATOLYE_Global!

In your Members table, is Member Email the primary field?

If so, this could be accomplished extremely easily. Just create a linked record field in the Points Tracker table that links to your Members table.

Then, whenever a new record is added to the Points Tracker table, just automate the process of the email address either appearing in (or automatically copying & pasting into) the Linked Record field.

See Solution in Thread

2 Replies 2
ScottWorld
18 - Pluto
18 - Pluto

Welcome to the community, @ATOLYE_Global!

In your Members table, is Member Email the primary field?

If so, this could be accomplished extremely easily. Just create a linked record field in the Points Tracker table that links to your Members table.

Then, whenever a new record is added to the Points Tracker table, just automate the process of the email address either appearing in (or automatically copying & pasting into) the Linked Record field.

No, primary field was an autonumber field defined as “ID” but I changed it to “Member Email” and configured the automation you mentioned. It worked perfectly and solved other problems I was having as well.

Thank you for your answer! @ScottWorld