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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
GarlonYau
Helper I
Helper I

Getting the a "Set" of status change dates related to the order.

Hi There, I'm looking for some help on the following query:

 

I have a set of change log data (I'm using excel to demostrate, but I'll be doing this in PowerBI)

GarlonYau_0-1685400027447.png

 

And I'm looking for instructions / steps on how I might be able to create a grouped table that would group it by the "Order Number", and pull the most complete set of "Open" and "Close". See the color coordinated color as my example of the latest "Open/Close Set"

 

GarlonYau_5-1685399802958.png

 

Thank you for your help in advance!

 

 

 

 

 

 

6 REPLIES 6
GarlonYau
Helper I
Helper I

Still looking for assistance on this topic.

GarlonYau
Helper I
Helper I

@Greg_Deckler I see you're an absolute god when it comes solving challenging problems! May I humbly ask for your thoughts / assistance of this conundrum?

GarlonYau
Helper I
Helper I

Hi @amitchandak, That's a great start. 

 

A follow up question: How would you accomodate examples such as order number 112? Where it's currently in an open status? 

Hi @amitchandak, any thoughts on this?

amitchandak
Super User
Super User

@GarlonYau , You can use group by in power query with min for Open date and max for close date

https://docs.microsoft.com/en-us/power-query/group-by

 

Summarize in DAX

 

Summarize(Table, Table[Order Numer], "Open", Min(Table[Open date]) , "Closed", Max(Table[Closed Date]) )

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

Hi @amitchandak, just following up. I think we are almost there.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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