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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ERing
Helper V
Helper V

Need Help - New column with earliest date for each ID

I need to a way to create the Assigned Date column in Power Query. The goal of the coulmn is to assign the earlist Sale Date for each record with the same Territory_ID. One caveat is that the Assigned Date should be the Sale Date for any records where Territory_ID is null.

 

Can anyone help?

 

Capture 2.PNG

3 REPLIES 3
ERing
Helper V
Helper V

Also, I'm unable to save these changes as my table is using DirectQuery. Is there a way around this?

Vijay_A_Verma
Super User
Super User

Insert this step as next step where #"Changed Type" should be replaced with your previous step in both the places

= Table.AddColumn(#"Changed Type", "Custom", (x)=> if x[Territory_ID]=null then x[Sale Date] else List.Min(Table.SelectRows(#"Changed Type"[[Territory_ID],[Sale Date]], each ([Territory_ID] = x[Territory_ID]))[Sale Date]))

Thank you for this. Would it be possible to introdude Status as a criteria so that

 

if Status = New than Assigned Date = Sales Date

If Status = Existing than Assigned Date = EARLIEST Sale Date for records with same Territory_ID?

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors
Top Kudoed Authors