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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 67 | |
| 44 | |
| 33 | |
| 27 | |
| 23 |
| User | Count |
|---|---|
| 144 | |
| 121 | |
| 59 | |
| 40 | |
| 35 |