My App has two tables
MemberDetails table has Site No, Name,Phone etc
Trx Register table has Site NO,Item, Payment mode, Payment Amount,Payment Status
Have added a Virtual Column - Pending Member Dues on Memberdetails table and set formula to select all the pending dues from trx register for given Site number.
SELECT(Transaction register[Item],([Site Number]=ANY(Transaction register[Site No])),true)
But the Virutal column(Pending Member Dues)
is coming blank.. ANy pointers to fix the issue?