I am officially stumped.
I have learned how table relationships helps with performance.
I have two tables. One called Users with 'Year Group' as a choice column ranging from 1 - 6. I have a second table called points which contains a lookup column for student ID from the Users table.
Each user can have multiple records in the points table.
I would like to sum up the points for the users that are in Year 1 for example, How might the formula look?
I have tried this, but this is not working.
Sum( Filter( 'Points', LookUp(Users, ID = ID).['Year Group'] = 1), 'Earned Points' )
Could this be the solution:
ClearCollect( UserHousepointTotals, ForAll( BSKL_Users, { UserID: ID, TotalHousepoints: Sum( Filter( 'Housepoint Transactions', 'Student ID' = ID ), 'Earned Housepoints' ) } ) )
Any help would be greatly appreciated.
@WarrenBelz, @SpongYe @FLMike Can you offer any advice for me, please?