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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Zeta
Contributor III
Contributor III

Line Chart: Show measure only if at least one filter is selected

Hi all,

I would like to show a measure only if at least one filter is selected.

If no filters are set, the measure shouldn't be displayed.

How can I code this?

Thx 

Labels (5)
1 Solution

Accepted Solutions
Padma123
Creator
Creator

Hi,

in line chart measure in that show measure if you can use the expression like

 

if((count(GetCurrentSelections()))>0,1,0)

View solution in original post

1 Reply
Padma123
Creator
Creator

Hi,

in line chart measure in that show measure if you can use the expression like

 

if((count(GetCurrentSelections()))>0,1,0)