Forum Discussion
Replacing blanks with zeros
Hi. I am trying to replace the blanks with zeros in a measure that's inside a filtered table. The measure is doing a count on rows. I used if(isblank(variable),0,variable) but filling in blanks with zeros including all rows and ignoring the filters that were applied in the slicer. Anyone has con e across this or has a solution? Thanks
Hi, Sagejah9
You can try the following methods.
Sample data:Measure = SUM('Table'[Value])+0Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- 1Daniel993Helper III
Hello yo can use:
VAR ForceZero = Variable <= column && column<= Variable
VAR Amt = [Variable] + IF ( ForceZero, 0 )
For mor information you can read https://www.sqlbi.com/articles/how-to-return-0-instead-of-blank-in-dax/ - v-zhangtiCommunity Support
Hi, Sagejah9
You can try the following methods.
Sample data:Measure = SUM('Table'[Value])+0Hope this method helps you.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.