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 ...
- Anonymous5 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 ago- amitchandak6 years ago
Super User
- dmbd19046 years ago
Helper III
Hi amitchandak , I'm not sure I understand but is that what's causing the problem? Is there anyway to avoid the problem?