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.
dmbd1904
Helper III
6 years agoHi Greg_Deckler , i tried that and got the same problem. See the image in my reply (It wouldn't let me include in the original post)
Greg_Deckler
Community Champion
6 years agodmbd1904 - Try
Measure =
VAR __Calc = <some calculation>
RETURN
IF(__Calc<0,0,__Calc)