Forum Discussion
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:
Thanky you a lot!
Vladimir
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
2 Replies
- nandic
Resident Rockstar
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- Vladimir_PNew Member
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