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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
slounsbury
Helper II
Helper II

Combine Rows and Select Earliest Date

I am wanting to combine rows that have like ticket numbers and create a new column that will only display the the ealierst date from those tickets. I am fairly new to PBI so I apologize if more info is needed or is not detailed correctly.

 

Currently the table looks like this:

 

SR_Service_RedIDEntered_ByTime_Start_UTCTime_End_UTC
123456joe11/6/17 8:30 PM11/6/17 9:30 PM
123456bob11/7/17 10:30 PM11/7/17 11:00 PM
123456tim11/8/17 6:30 PM11/8/17 7:00 PM
987654bob12/6/17 6:30 PM12/6/17 7:00 PM
987564joe12/12/17 9:30 PM12/12/17 10:00 PM
987654tim1/11/18 6:30 PM1/11/17 7:00 PM

 

I am the new column to just display the first time entry on the ticket like this:

 

SR_Service_RedIDEntered_ByTime_Start_UTCTime_End_UTCFirst_Time
123456joe11/6/17 8:30 PM11/6/17 9:30 PM11/6/17 8:30 PM
123456bob11/7/17 10:30 PM11/7/17 11:00 PM11/6/17 8:30 PM
123456tim11/8/17 6:30 PM11/8/17 7:00 PM11/6/17 8:30 PM
987654bob12/6/17 6:30 PM12/6/17 7:00 PM12/6/17 6:30 PM
987564joe12/12/17 9:30 PM12/12/17 10:00 PM12/6/17 6:30 PM
987654tim1/11/18 6:30 PM1/11/17 7:00 PM12/6/17 6:30 PM

 

Or somehow create a column that marks the first time and then I can sort it out while making the report.

 

Thanks!

 

 

 

1 ACCEPTED SOLUTION
slounsbury
Helper II
Helper II

Was able to figure out how to create the column by using:

 

column = CALCULATE(MIN(Time_Entry[Time_Start_UTC]), FILTER(Time_Entry, Time_Entry[SR_Service_RecID]=EARLIER([SR_Service_RecID])))

View solution in original post

1 REPLY 1
slounsbury
Helper II
Helper II

Was able to figure out how to create the column by using:

 

column = CALCULATE(MIN(Time_Entry[Time_Start_UTC]), FILTER(Time_Entry, Time_Entry[SR_Service_RecID]=EARLIER([SR_Service_RecID])))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors