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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

DAX Formula for MIN Date

 

Hello Community, 

I have Table 1 and the goal is to create a column of the Minimum [TransDateTime] for when the Service Order Line went into a "completed stage" in the "NewValue" column. The "completed stages" in the newvalue column would be either "PaperworkReview","WaitingforPaperwork", or "Finished". 

 

Service order may not directly go in sequence. It may go directly into "Finished" and skip the paperworkreview or waitingforpaperwork value.  

 

Table 1

ServiceOrderLineIdIDServiceOrderIdServiceOrderLineNumTransDateTimeRecIdOldValueNewValue
85283199525198767747/18/21 1:12544544PaperworkReviewFinished
85283199535198767747/17/21 1:21326442WaitingforPaperworkPaperworkReview
85283199545198767747/15/21 5:41234997InProcessWaitingforPaperwork
32283199555178354427/15/21 3:33234991PaperworkReviewFinished
32283199565178354427/15/21 3:01234999InProcessPaperworkReview

 

Thank you for review! 

1 REPLY 1
wdx223_Daniel
Super User
Super User

=var _max=calculate(max(table1[transdatetime]),allexcept(table1,table1[serviceorderlineid]) var _min=calculate(min(table1[transdatetime]),allexcept(table1,table1[serviceorderlineid]) return if(max(table1[transdatetime])=_max,"finished",if(max(table1[transdatetime])=_min,"paperworkreview","waitingforpaperwork"))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors