Forum Discussion
Anonymous
7 years agoNot applicable
Replacing (Blanks) with 0
Dear All, For a production report I'm presenting production numbers based on hours. In some situations the machine did not produce any parts so there is no value for that hour. Is there a fu...
- Anonymous7 years ago
The solution didn't work.
I did solve it by creating a new measure:HourlyCount = var HourlyCounter = CALCULATE(SUM(CounterTable[Value]))
return IF(ISBLANK(HourlyCounter), 0, HourlyCounter)
v-yuta-msft
Community Support
7 years agoAnonymous ,
Click-> Query Editor-> Replace Values and input replace null with 0 like below:
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
7 years agoNot applicable
The solution didn't work.
I did solve it by creating a new measure:
HourlyCount = var HourlyCounter = CALCULATE(SUM(CounterTable[Value]))
return IF(ISBLANK(HourlyCounter), 0, HourlyCounter)