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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.