This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have 4 date columns along with ID Column
completed date
assigned date
approved date
Originated date
I want to calculate like
IF(Completed date is blank() then Assigned date,Completed date)
If (Assigned date is blank() then approved date,Assigned date)
if (approved date is blank() then Originated date , approved date ) for each ID
How can i calculate in Dax
Please help
Solved! Go to Solution.
try this column
Calc Column =
SWITCH (
FALSE (),
ISBLANK ( [Completed date] ), [Completed date],
ISBLANK ( [Assigned date] ), [Assigned date],
ISBLANK ( [Approved date] ), [Approved date],
ISBLANK ( [Originated date] ), [Originated date]
)
try this column
Calc Column =
SWITCH (
FALSE (),
ISBLANK ( [Completed date] ), [Completed date],
ISBLANK ( [Assigned date] ), [Assigned date],
ISBLANK ( [Approved date] ), [Approved date],
ISBLANK ( [Originated date] ), [Originated date]
)
Thanks 🙂
This worked perfectly.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |