Forum Discussion
Getting a 0 and not blank
- 4 years ago
Hello, something like this should fix it:
=CALCULATE(COUNT(LossRunToExcel[Claim Number]),LossRunToExcel[Claim Status] <> "Closed")+0cheers,
- 4 years ago
Hello bdehing,
Try with COALESCE formula. It should solve it by giving a "0" in case there is not data. For your case, the final formula would be:
Claim Count Open = COALESCE(CALCULATE(COUNT(LossRunToExcel[Claim Number]),LossRunToExcel[Claim Status] <> "Closed"),0)
Hello bdehing,
Try with COALESCE formula. It should solve it by giving a "0" in case there is not data. For your case, the final formula would be:
Claim Count Open = COALESCE(CALCULATE(COUNT(LossRunToExcel[Claim Number]),LossRunToExcel[Claim Status] <> "Closed"),0)
- bdehning4 years ago
Post Prodigy
Thank you. What if I need to do the same thing for Conditional or Custom Columns, if there is no measure involved.