Forum Discussion
Anonymous
3 years agoNot applicable
Count Text Values, but return ) not (Blank) - Power BI
Hi Folks I created a measure to count how many Overdue projects appear in a list Overdue Count = CALCULATE( COUNTROWS( 'Project Overview'), 'Project Overview'[Overdue Flag] = "Overdue") I ...
- 3 years ago
Wrap your function with COALESCE.
So COALESCE([Your Measure], 0)
COALESCE returns the first non-blank value, so if Your Measure is blank, it will default to the 0.
Anonymous
3 years agoNot applicable
Perfect Solution
Thank You!