Populate latest date of interaction from another table

Hello,

I have a stores table that I need to populate a virtual column with the latest date from a visits table. 

I've tried a sort function with a max row but I can't get it to further sort by the store ID (which is in key and ref respectively)

Solved Solved
0 3 67
1 ACCEPTED SOLUTION

Should be able to do:   MAX(SELECT( visits[date] , [store] = [_THISROW] ) )   ...no?

 

 

View solution in original post

3 REPLIES 3

Should be able to do:   MAX(SELECT( visits[date] , [store] = [_THISROW] ) )   ...no?

 

 

Thank you. I was irritatingly close 

Great. Actually on second thought, probably just : MAX( [Related Visits][Date] )

Top Labels in this Space