cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
MaggieWang
Frequent Visitor

COVID-19 US Tracking Sample - DAX Formula for Daily Death measure

Hi, I am practicing writing DAX formulas and come across the following measure from the "COVID-19 US Tracking Sample" file.

      Daily deaths =
      VAR __CountyName = 'COVID'[County Name]
      VAR __State = 'COVID'[State]
      VAR __Yesterday =  DATEADD(COVID[Date],-1,DAY)
      VAR __TodaysDeaths = 'COVID'[Deaths]
      RETURN  __TodaysDeaths - CALCULATE(
          SUM('COVID'[Deaths]) ,
          FILTER(
              COVID,
              COVID[Date] = __Yesterday &&
              COVID[County Name] = __CountyName &&
              COVID[State] = __State
          )
      ) + 0
Everything makes perfect sense except the last "+ 0" part. Why was the + 0 required at the end of the measure, was it for providing an initial value for doing the SUM? Many thanks.
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

Hi, @MaggieWang , it's a common trick to convert BLANK() to 0, i.e. when this part of measure

 

__TodaysDeaths - CALCULATE(
          SUM('COVID'[Deaths]) ,
          FILTER(
              COVID,
              COVID[Date] = __Yesterday &&
              COVID[County Name] = __CountyName &&
              COVID[State] = __State
          )
      )

 

returns BLANK(), it can be converted to 0.

Try this measure to see the affect

Test = BLANK() + 0

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

If you remove +0, you'll see immediately why it's there. And no, it's not necessary unless you want to see 0 instead of BLANK...
CNENFRNL
Community Champion
Community Champion

Hi, @MaggieWang , it's a common trick to convert BLANK() to 0, i.e. when this part of measure

 

__TodaysDeaths - CALCULATE(
          SUM('COVID'[Deaths]) ,
          FILTER(
              COVID,
              COVID[Date] = __Yesterday &&
              COVID[County Name] = __CountyName &&
              COVID[State] = __State
          )
      )

 

returns BLANK(), it can be converted to 0.

Try this measure to see the affect

Test = BLANK() + 0

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors