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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Using greater than '>' to filter a measure in the script or app

Hello team,

I'm trying to filter a measure like [Amount]>0, this is not working for me. Please suggest me a workaround.

RaMu

1 Reply
undergrinder
Specialist II
Specialist II

Hi Rajes,

in load script your expression is valid.

Load * resident

where Amount>0;

On frontend you can write expression like this:

if(Amounf>0,Amount,null())

then add other functions to sum, count, avg etc...

sum(if(Amounf>0,Amount,null()))

G.