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! Learn more

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
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.