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: 
exfosteve
Partner - Contributor III
Partner - Contributor III

Straight Table - hide rows with null values

I have a straight table set up, and I'm trying hide the rows with a null value in the AvgTime01 dimension.  I can't figure out how to do this. I've attached the QVW/QVD that I'm using. 

Any help on this would be great.

thanks,

hideRows.png

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Another way to do this would be to use search string in the set analysis

Avg({<system = {"=Len(Trim(avg(Timer01))) > 0"}>} Timer02)

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

Make your second expression to be 0 when the first one is null... also make sure to select the total mode of Average to see the correct sub-total

If(Len(Trim(avg(Timer01))) > 0, Avg(Timer02))


Capture.PNG

sunny_talwar
MVP
MVP

Another way to do this would be to use search string in the set analysis

Avg({<system = {"=Len(Trim(avg(Timer01))) > 0"}>} Timer02)

exfosteve
Partner - Contributor III
Partner - Contributor III
Author

Works like a champ.  Thanks