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: 
Not applicable

Filtering out blank values

Hello all,

I have been struggling with the best way to filter out blank values. In this report I am trying to measure the amount of time between a widget sale and reload time. This is what I am trying, but to no avail.

=Interval(max({$<widget1={'*'}>}PurchaseTime)-(vReloadTime),'hh:mm')

Any guidance would be great!

Labels (1)
2 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

if you are trying to filter out blank values in the field widget1, then you could use the following syntax:

=Interval(max({$<widget1={"=len(trim(widget1))>0"}>}PurchaseTime)-(vReloadTime),'hh:mm')


this search condition will only include widgets that have a value that's at least one character long.



Ask me about Qlik Sense Expert Class!
sunny_talwar
MVP
MVP

You can give this a shot as well:

=Interval(max({$<widget1=p({<widget1 = {'*?'}>})>}PurchaseTime)-(vReloadTime),'hh:mm')



Best,

S