Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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]
Solved! Go to Solution.
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! | |
| #proudtobeasuperuser | |
This worked great. Thank you as overthinking got me once again. Thank you again.
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.
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! | |
| #proudtobeasuperuser | |
This worked great. Thank you as overthinking got me once again. Thank you again.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 6 | |
| 6 | |
| 5 |