Forum Discussion

bdehning's avatar
bdehning
Icon for Post Prodigy rankPost Prodigy
4 years ago
Solved

Getting a 0 and not blank

I have the following measure but some rows return a blank instead of a 0 if there were no results?   Claim Count Open = CALCULATE(COUNT(LossRunToExcel[Claim Number]),LossRunToExcel[Claim Status] <>...
  • samdthompson's avatar
    4 years ago

    Hello, something like this should fix it:

    =CALCULATE(COUNT(LossRunToExcel[Claim Number]),LossRunToExcel[Claim Status] <> "Closed")+0

     

    cheers,

  • JasserBI's avatar
    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)