Hi,
I have two dataverse tables linked by a lookup column.
The first is a users table. The second a points table.
I want to create a collection of users with an added column of total points per person.
ClearCollect(
Totals,
AddColumns(
BSKL_Users,
"Total",
Sum(
Filter(
'Point Transactions',
'Student ID'.ID = selectedUser.ID
),
'Earned points'
)
);
This code should work; however, it produces a 'The specified column cannot be accessed in this context'. Could someone help me overcome this error?
Thank you in advance

Report
All responses (
Answers (