Forum Discussion
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 a table I created. What can I add to the conditional column?
8 Replies
- SykResident Rockstar
Which column are you trying to have the zero in? Also, can you post a screenshot of your conditional column settings?
- bdehningPost 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]))
- SykResident Rockstar
Yes! Just add a +0 on the measure
Count = CALCULATE(COUNT([Total Gross Incurred])) + 0
- bdehningPost Prodigy
That did not work as still blanks. I did a -1 as a test on the measure and the other numbers reduced by 1.
I think the issue is there are no values so + 1 with no value may still be no value.
I need to keep wokrig on this.