I’m just trying to get my head around AppSheet.
I have two tables:
-
“Members” with columns: “name” and “Balance”
-
“Payments” with columns: “name”, “payment date”, “amount paid”.
Multiple payments will be there on various dates in the Payments table.
I want to sum all the amount paid for a member and fill it against the “Balance” column.
I tried the below expression but getting an error
sum(select (Payments[amount paid],[_THISROW].[name]=Payments[name]))
→ says Cannot compare Name with List in ([_THISROW].[name] = Payments[name])
Both “name” columns are of type “name” and I think because there are multiple rows for the same name, it is returning a list but I can’t figure out how to make this work.
Can someone please help?