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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
MCALDERON
Frequent Visitor

DAX - Need Help

Hi, I need some guidance on this new calculated column. I have this example of data. 

MCALDERON_0-1624597721083.png

You can see I have 2 reapeted items, which have two different states, I need to calculate how much time passed from the date when the state was "Done" till the date when the state was "Closed". 

This is the way I thought it might work, but the column is blank.

var closeCase = if('Brazil Compliance Modernization'[State]= "Closed", 'Brazil Compliance Modernization'[Date])
var doneCase = IF('Brazil Compliance Modernization'[State] = "Done", 'Brazil Compliance Modernization'[Date])
return
DATEDIFF(closeCase,doneCase,DAY)
 
Please can you guide me on this?
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@MCALDERON , Try a new column like

 


var closeCase = minx(filter('Brazil Compliance Modernization', [work_item_id] =earlier([work_item_id]) && 'Brazil Compliance Modernization'[State]= "Closed") 'Brazil Compliance Modernization'[Date])
var doneCase = maxx(filter('Brazil Compliance Modernization', [work_item_id] =earlier([work_item_id]) && 'Brazil Compliance Modernization'[State] = "Done"), 'Brazil Compliance Modernization'[Date])
return
if( [status]= "Done", DATEDIFF(closeCase,doneCase,DAY) , blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
MCALDERON
Frequent Visitor

Awesome, that helps, thanks a lot!! 

amitchandak
Super User
Super User

@MCALDERON , Try a new column like

 


var closeCase = minx(filter('Brazil Compliance Modernization', [work_item_id] =earlier([work_item_id]) && 'Brazil Compliance Modernization'[State]= "Closed") 'Brazil Compliance Modernization'[Date])
var doneCase = maxx(filter('Brazil Compliance Modernization', [work_item_id] =earlier([work_item_id]) && 'Brazil Compliance Modernization'[State] = "Done"), 'Brazil Compliance Modernization'[Date])
return
if( [status]= "Done", DATEDIFF(closeCase,doneCase,DAY) , blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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 Solution Authors