Forum Discussion
bdehning
4 years agoPost Prodigy
Replace no value with a zero in Conditional Column
I have a Conditonal Column Litigated Text If Litigated equals "True" Outout Litigated Else 'Not LItigated" If there are no rows in a given year, I want to show a zero and not a blank in...
bdehning
4 years agoPost Prodigy
I do use a measure to count the Litigated and Not Litigated and probably where I need to introduce a 0.
The measure is Count = CALCULATE(COUNT([Total Gross Incurred]))
Syk
4 years agoResident Rockstar
Yes! Just add a +0 on the measure
Count = CALCULATE(COUNT([Total Gross Incurred])) + 0