Forum Discussion
dmbd1904
Helper III
6 years agoBlanks as Nulls in Matrix
Hi I'm trying to convert blank values in my matrix to Zero's. The table looks as follows: Forecast = CALCULATE(DISTINCTCOUNT(Task[UniqueTaskID])) I tried to create another measure ...
- Anonymous6 years ago
Adding +0 to the end of your measure is one quick way to fix this
Forecast = CALCULATE(DISTINCTCOUNT(Task[UniqueTaskID]))+0Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Community Champion
6 years agodmbd1904 - Try
Measure =
VAR __Calc = <some calculation>
RETURN
IF(__Calc<0,0,__Calc)dmbd1904
Helper III
6 years agoNo unfortunately that didn't work either
- Greg_Deckler6 years ago
Community Champion
dmbd1904 Can you post sample data as text that replicates this issue so I can mock it up?