Forum Discussion
Priya2007
5 years agoFrequent Visitor
Suprresing zero values
Hi , I am using below measures to get the result : WIP = SUMX(SUMMARIZE(Transactions, Transactions[PROJECT_NO], Transactions[FISCAL_PERIOD]),[WIP Amount]) WIP Amount = CALCULATE(sum(Transact...
kumar27
5 years agoAdvocate V
write 0.00 in place 0 at advanced filter
Priya2007
5 years agoFrequent Visitor
Hi , I have tried that , but thats not working .
- wdx223_Daniel5 years agoCommunity Champion
Priya2007 add a IF out of your code,like
WIP=VAR _Total= SUMX(SUMMARIZE(Transactions, Transactions[PROJECT_NO], Transactions[FISCAL_PERIOD]),[WIP Amount]) RETURN IF(_Total<>0,_Total)
if this still not work, it might be some very small value, like 0.000000001, which come from the floating-point calculation