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

How can make selections based on filter for expression

I have created dashboard based on emp data.

it contains empno,ename,sal fields and i have created empno as filter.

i have creted stright table for represent salary based on ename.

But i need to calculate setanalysis if i select filter as empno then i need to sum of salary on table otherwise i need to show based on ename how can i place in expression plesae give me example?

3 Replies
Not applicable
Author

try this

sum({<empname=}>}sales)

ashfaq_haseeb
Champion III
Champion III

May be like this

Regards

ASHFAQ

Not applicable
Author

Hi,

Sum({<ename=}>} sal)  ----it will give which u select the empno that sales only.

Sum({<empno=}>} sal)  ----it will give which u select the ename that sales only.

Sum({<ename={'*'}>} sal)  ----it will give all ename that sales only.

Sum({<empno={'*'}>} sal)  ----it will give all empno that sales only.