Hello everyone,
I'm developing an app in which users can request for company's common resources (Cars, Rooms, Devices, etc) with a feature where they can turn on notifications for that particular resource. That way user can follow every activity concerning the resource they are "following" until the date they use that resource.
However, since they can request a single resource multiple times with multiple start dates, I'm having some trouble in displaying that info in a gallery. Here's an example of my data.

Considering that I'm John, I would like to follow every activity users record for Car A until 5/27/2020 and for Room A until 5/9/2020. However I'm having trouble in finding the maximum date for the specific request.
Here's what I have so far:
Filter(ExampleCollection, Name <> "John" && Request exactin Filter(ExampleCollection, Resource = "John").Pick &&
StartDate <= First(SortByColumns(Filter(ExampleCollection, Resource = "John"), "StartDate", Descending)).StartDate
Can anyone help me with this?
Thanks in advance