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(Transactions[ACTUAL_AMOUNT]),
Filter(Transactions,
SELECTEDVALUE('Transactions'[FISCAL_PERIOD])<=SELECTEDVALUE('Date'[Financial Period Number])),
Filter (Transactions,Transactions[Activity Code Num] >= 3000 && Transactions[Activity Code Num] <= 3999) ,
filter (Transactions,[Expense Code Num] >= 200)
) + 0
But I want ro supress the row when WIP is 0 .
I am putting a visual level filter but thats not working .
9 Replies
- wdx223_Daniel
Community Champion
- Priya2007Frequent Visitor
Hi Daniel,
I have tried but it is not working
- kumar27
Advocate V
Write is not 0.00
OR
use basic filtering and select all except 0.00 - Payeras_BI
Solution Sage
- Payeras_BI
Solution Sage
Hi Priya2007 ,
I editted my previous answer because it was lacking a "-" in front of the 0.01 in the "is less than" part of the filter. Sorry for the typo.
The way to get rid of the zeros (floating point issue) using the filter pane would be like this:
Regards,