Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have requirement to show the count of Materials that have sum(Cost) value greater than '0', however the below expression which i have written is not working , please suggest how to achieve it.
if($(vLAVZC02Sum)>0,Count(Material))/Count(distinct Material)
vLAVZC02Sum = Sum({<Flag_LAV={'1'}>}Cost)
May be you need this
Count({<Material = {"=$(vLAVZC02Sum) > 0"}>}Material)
Hi,
Try this
Count({<Cost = {"=$(vLAVZC02Sum) > 0"}>}Material)
Or as your expression was
Count({<Cost = {"=$(vLAVZC02Sum) > 0"}>}Material)/Count(distinct Material)
Hope it helps