Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Solved! Go to Solution.
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
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 9 | |
| 8 |