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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
viveksingh
Creator III
Creator III

Show all irrespective of selections

HI all,

i have data like

DeptNameSalDate
FINKL25020/7/2018
HRDEF8030/8/2018
ITABC1001/9/2018
ITHG1802/9/2018

‌ if I select a date it should show data for that date and for rest, it should show as zero.

ex: selected 1/9/2018

below is expected output

DeptNamesal
FINKL 0
HRDEF0
ITABC100
ITHG0
1 Solution

Accepted Solutions
tresesco
MVP
MVP

Say you are using expression Sum(sal) for sal calculation. Re-write it like:

=Sum(val)*Avg({1} 1)



And, uncheck 'Supress zero values' in presentation tab.

View solution in original post

3 Replies
tresesco
MVP
MVP

Say you are using expression Sum(sal) for sal calculation. Re-write it like:

=Sum(val)*Avg({1} 1)



And, uncheck 'Supress zero values' in presentation tab.

Anonymous
Not applicable

viveksingh
Creator III
Creator III
Author

‌perfect thanks Tresesco.

I Tried with Avg(1). But no luck.

Thank you