Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

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

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