Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Vladimir_P
New Member

Putting zero value in blank field

Dear Community,

I’m trying to calculate the revenue difference between the current and previous year. For each category where I didn’t have revenue in the previous year, the field is blank. The DAX formula for revenue difference also presents a blank field for these categories.

Can someone help me with DAX to present number zero in the blank fields for the previous year? That way, I believe, the revenue difference will be presented as it should be.

Please see the picture below:

Vladimir_P_0-1630259369481.png

 

Thanky you a lot!
Vladimir

 

1 ACCEPTED SOLUTION
nandic
Memorable Member
Memorable Member

Hi @Vladimir_P ,

In most cases it would be expected to have blank value if data is missing or if we divide values with zero.
However, if you have business target to display these blanks as zeros, you can set it within IF statement.

Example:

if(

   isblank(

          CALCULATE([Sales],SAMEPERIODLASTYEAR(tblDate[Date]),date)

   )

   ,0

   ,CALCULATE([Sales],SAMEPERIODLASTYEAR(tblDate[Date]),date)

)

Cheers,
Nemanja Andic

View solution in original post

2 REPLIES 2
nandic
Memorable Member
Memorable Member

Hi @Vladimir_P ,

In most cases it would be expected to have blank value if data is missing or if we divide values with zero.
However, if you have business target to display these blanks as zeros, you can set it within IF statement.

Example:

if(

   isblank(

          CALCULATE([Sales],SAMEPERIODLASTYEAR(tblDate[Date]),date)

   )

   ,0

   ,CALCULATE([Sales],SAMEPERIODLASTYEAR(tblDate[Date]),date)

)

Cheers,
Nemanja Andic

Hello @nandic ,


Thank you very much! It works very well in my model 🙂
The essential thing was to present data in the field "Revenue difference". Before your solution, this was not possible. Thank you for that!

Have a nice day!
Vladimir

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors