Last date from list, based on the key value from another table

Hello to everyone, 

Basically I have two tables, 

1. Car list, Registration number column(key value)

2. List of all records for all services of the cars from car list, with Date of  service column

What I want to do is practically, make the virtual column to see when was the last time the car  was serviced

I tried something with lookup, but always get random values

Solved Solved
0 2 31
1 ACCEPTED SOLUTION

Try something like:

MAX(SELECT(ServicesTable[Date of Service],[registration number]=[_thisRow].[registration number]))

View solution in original post

2 REPLIES 2

Try something like:

MAX(SELECT(ServicesTable[Date of Service],[registration number]=[_thisRow].[registration number]))

Thanks!!!

Top Labels in this Space