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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
dferry
Helper I
Helper I

If Then Else to calculate a date

I am trying to calculate a date by using two date columns.  I want to use column  mos_d_override first but if there is a null value then i want to use mos_d_schedule.  I get results but not correct results.  The results of this formula are used in another formula to calculate past due days.  I  am new to this so please bear with me.  Thank you.

if [mos_d_override] is null then Date.AddDays([d_schedule] else Date.AddDays([mos_d_override]

 

2 ACCEPTED SOLUTIONS
tackytechtom
Super User
Super User

Hi @dferry ,

 

How about this?

if [mos_d_override] is null then [d_schedule] else [mos_d_override]


Let me know, if this solves your issue 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

This worked great.  Thank you as overthinking got me once again.  Thank you again.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

As @tackytechtom said, but you should use the syntax

 

if [Date] = null

 

instead of

 

if [Date] is null

 

--Nate

Sorry, this didn't work.  Thank you for your time.

tackytechtom
Super User
Super User

Hi @dferry ,

 

How about this?

if [mos_d_override] is null then [d_schedule] else [mos_d_override]


Let me know, if this solves your issue 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

This worked great.  Thank you as overthinking got me once again.  Thank you again.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors