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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
icturion
Resolver II
Resolver II

Summarize tabel on last date values

Hi,

I have a table with data (see table below).

Table.JPG

From the table, I only want to use the records with the last time per value in the column "kenteken". I also want to be able to use the values ​​in the columns lon and lat.

 

This is what i got so far:

New table --> Laatste locatie = SUMMARIZE(AQZ_TRAVEL_MON,AQZ_TRAVEL_MON[Kenteken], "Laatst bekend", MAX(AQZ_TRAVEL_MON[Date time]))
 
result is
table result.JPG
How do i now included the columns lon en lat with the correnspondig values?
1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @icturion 

You can add two calculated columns as below:

 

lon =
LOOKUPVALUE (
    AQZ_TRAVEL_MON[lon],
    AQZ_TRAVEL_MON[kenteken], 'Laatste locatie'[kenteken],
    AQZ_TRAVEL_MON[Date time], 'Laatste locatie'[Laatst bekend]
)
lat = 
LOOKUPVALUE (
    AQZ_TRAVEL_MON[lat],
    AQZ_TRAVEL_MON[kenteken], 'Laatste locatie'[kenteken],
    AQZ_TRAVEL_MON[Date time], 'Laatste locatie'[Laatst bekend]
)

 

155.png

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

Hi, @icturion 

You can add two calculated columns as below:

 

lon =
LOOKUPVALUE (
    AQZ_TRAVEL_MON[lon],
    AQZ_TRAVEL_MON[kenteken], 'Laatste locatie'[kenteken],
    AQZ_TRAVEL_MON[Date time], 'Laatste locatie'[Laatst bekend]
)
lat = 
LOOKUPVALUE (
    AQZ_TRAVEL_MON[lat],
    AQZ_TRAVEL_MON[kenteken], 'Laatste locatie'[kenteken],
    AQZ_TRAVEL_MON[Date time], 'Laatste locatie'[Laatst bekend]
)

 

155.png

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

The other day I read an article about SUMMARIZE, and came away a bit shellshocked. 

 

All the secrets of SUMMARIZE - SQLBI

 

In a nutshell - you're likely better off using GROUPBY()

 

In any case you can add Lat and Lon to the groupings.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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