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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
YasminYas
Helper I
Helper I

Column

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
TATA.PNG

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@YasminYas 

 

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]
)

Regards
Zubair

Please try my custom visuals

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@YasminYas 

 

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]
)

Regards
Zubair

Please try my custom visuals

Thanks 🙂
This worked perfectly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.