Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello team,
I'm trying to filter a measure like [Amount]>0, this is not working for me. Please suggest me a workaround.
RaMu
Hi Rajes,
in load script your expression is valid.
Load * resident
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.