Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have two date columns that I am attempting to find the difference between. The issue is that about 1/3rd are missing at least one date. Would like the calculated column to zero out the whole formula instead of subtracting from 01/01/1900 the way it currently is.
What I get:
Start Date 1 | Start Date 2 | Difference Between |
05/02/2025 | 05/17/2025 | 15 |
04/28/2025 | -4689 | |
05/22/2025 | 4698 |
What I want:
Start Date 1 | Start Date 2 | Difference Between |
05/02/2025 | 05/17/2025 | 15 |
04/28/2025 | 0 | |
05/22/2025 | 0 |
Any suggestions on how to do this with Calculated Columns?
Solved! Go to Solution.
Hello @Anonymous ,
You can change the measure like this:
"
measure =
IF( ISBLANK([start_date2]) || ISBLANK([start_date1]), 0, [start_date1] -[start_date2])
"
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |
Hello @Anonymous ,
You can change the measure like this:
"
measure =
IF( ISBLANK([start_date2]) || ISBLANK([start_date1]), 0, [start_date1] -[start_date2])
"
Kind Regards,
Gökberk Uzuntaş
📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!
🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |
Perfect. Thank you very much.
Hi @Anonymous - Yes, you can create a calculated column in Power BI using DAX that returns 0 if either of the two dates is missing, and otherwise returns the correct date difference.
Hope this helps.
Please find the attached pbix file FYR.
Proud to be a Super User! | |
User | Count |
---|---|
98 | |
76 | |
74 | |
49 | |
26 |