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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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