Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two columns from two different tables.
Employee | Payment |
---|---|
ID | PaymentID |
I need to get TotalAmount as when PaymentID= ID so I write set anaysis like below
Sum({<PaymentID={ID}>}TotalAmount)
and TotalAmount values are in Payment table.
but when I am reloading it's shwoing £0 for all rows.
Could any one help me is there any error in set analysis expression
Hi,
Sum({<PaymentID={"=PaymentID=ID"}>}TotalAmount)
Or
Sum({<UniqueID={"=PaymentID=ID"}>}TotalAmount)
Hi,
Sum({<PaymentID={"=PaymentID=ID"}>}TotalAmount)
Or
Sum({<UniqueID={"=PaymentID=ID"}>}TotalAmount)
Thanks and it's working