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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
alemberg
Contributor III
Contributor III

Display N/A until

Is there a way to have a KPI display as N/A until a user select something from either a dropdown or within another visualization. As an example Total Returns N/A until the user selects a specific Fund or Region

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be like this:

If(GetSelectedCount(Fund) = 0 and GetSelectedCount(Region) = 0, 'N/A', Expression)


UPDATE: You might need to play around with the Formatting of the KPI though

View solution in original post

1 Reply
sunny_talwar
MVP
MVP

May be like this:

If(GetSelectedCount(Fund) = 0 and GetSelectedCount(Region) = 0, 'N/A', Expression)


UPDATE: You might need to play around with the Formatting of the KPI though