Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I need some help in finding a way to restrict data based on value in a field, I have a field quantity, I wanted to show the data in the straight table object where quantity > 0. Any help is highly appreciated. I tried creating an expression like
=sum({$<[Item Quantity] ={>0}>}[Item Quantity]) ,but it did not work.
Thanks
Heera
try using quotes inside of the filter
=sum({$<[Item Quantity] ={">0"}>}[Item Quantity])
=Sum(if([Item Quantity] >0,[Item Quantity] ))
>0 is a search and it needs double quotes ">0" (it works with single too '>0')
Thanks Ramon for the reply, however my data still showing records with quantity = 0
Kush,
I tried using this logic, its not filtering the data with quantity = 0.
the quotes should work, do you have items with null quantity ?
Please post the sample app
Massimo,
I used double quotes , but I could get the desired result. I wanted to show the data in chart where quantity >0.
No it doesn't have, its either >0 or less <0.