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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Determine start and end coordinates for each distinct trip.

I need to determine the Start and End (i.e. first/earliest) coordinates based on a timestamped trip data.

 

My table is as follows:

 

trip_idtimestamplatitudelongitude
1.... 06:00 AM....1000....500
1.... 06:01 AM....1001....499
1.... 06:02 AM....1001....498
2.... 07:30 AM....1001....399
2.... 07:31 AM....1002....399
2.... 07:32 AM....1002....398

 

The starting location is therefore:

 

trip_idtimestamplatitudelongitude
1.... 06:00 AM....1000....500
2.... 07:30 AM....1001....399

 

I need a similar result for the end location. I can then plot the latitude & longitudes on a Map widget.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

For anyone else visiting this thread; My solution ended up looking like this:

 

I create 2 x measures,

  • One for the Earliest date of a trip_id (i.e. start of trip)

Earliest date =
CALCULATE(MIN('Table'[date]),ALLEXCEPT('Table','Table'[trip_id]))

 

Another for Latest date of a trip_id (i.e. end of trip): 

Latest date =
CALCULATE(MAX('Table'[date]),ALLEXCEPT('Table','Table'[trip_id]))

 

Lastly, I believe I inserted a custom DAX column. This checks whether [date] is:

  • The start time of a trip
  • The end time of a trip
  • or a somewhere inbetween (a waypoint)
  • The DAX contains a nested IF function, and assigns values based on [date]'s value:

date_check = IF('Table'[date] = [Latest date], "End Trip", IF('Table'[date] = [Earliest date], "Start Trip", "Waypoint"))

 

These steps could probably be contained in one DAX expression - but I would rather keep it separated so I can use the measures for other things.

 

Cheers

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@Anonymous , I given the name what there in the sample. Please select the correct column name in your power bi file. Or share a sample pbix

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi 

 

I did substitute my own parameters into the measure. 

 

Are you able to clarify your original solution more? The instruction is somewhat unclear.

 

Thank you

Anonymous
Not applicable

For anyone else visiting this thread; My solution ended up looking like this:

 

I create 2 x measures,

  • One for the Earliest date of a trip_id (i.e. start of trip)

Earliest date =
CALCULATE(MIN('Table'[date]),ALLEXCEPT('Table','Table'[trip_id]))

 

Another for Latest date of a trip_id (i.e. end of trip): 

Latest date =
CALCULATE(MAX('Table'[date]),ALLEXCEPT('Table','Table'[trip_id]))

 

Lastly, I believe I inserted a custom DAX column. This checks whether [date] is:

  • The start time of a trip
  • The end time of a trip
  • or a somewhere inbetween (a waypoint)
  • The DAX contains a nested IF function, and assigns values based on [date]'s value:

date_check = IF('Table'[date] = [Latest date], "End Trip", IF('Table'[date] = [Earliest date], "Start Trip", "Waypoint"))

 

These steps could probably be contained in one DAX expression - but I would rather keep it separated so I can use the measures for other things.

 

Cheers

amitchandak
Super User
Super User

@Anonymous , add a measure like this and all other un summarized column

calculate(min(Table[timestamp]), filter(Table, Table[timestamp] = calculate(min(Table[timestamp]), allexcept(Table, Table[trip_id]))))

 

Or create measure for all other columns then trip_id

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi @amitchandak 

 

I'm getting the error: 

 

A single value for column 'timestamp' in table 'Table' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single results.

Regards

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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