Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression using set analysis

Hi,

I have two columns from two different tables.

EmployeePayment
IDPaymentID

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

1 Solution

Accepted Solutions
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

Sum({<PaymentID={"=PaymentID=ID"}>}TotalAmount)

Or

Sum({<UniqueID={"=PaymentID=ID"}>}TotalAmount)

View solution in original post

2 Replies
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi,

Sum({<PaymentID={"=PaymentID=ID"}>}TotalAmount)

Or

Sum({<UniqueID={"=PaymentID=ID"}>}TotalAmount)

Not applicable
Author

Thanks and it's working