Dear All,
I have a Question about a Gallery Filter:
Following Szenario:
2 Sharepoint Lists:
| Travel | Seatrequests |
| ID | ID |
| departureTime | TravelID |
| returnTime | Requester |
| Owner | |
Employees can Create a travel and offer seats for other colleagues. The TravelID in Seatrequests is the Value of the ID from the associated Travel.
I have a Gallery where all my Seatrequests are shown with a Simple Filter: Filter(Seatrequests,Requester.Email = currentUser.Email)
Problem: It shows also requests from the Past because the departureTime is in an other SharepointList (Travel) and this makes it not possible to Filter it easily for me. I think I have to use a Lookup or someting to merch the ID with TravelID to get the depatruretime > now().
Filter( Seatrequests, Requester.Email = currentUser.Email && LookUp(Travel, ID = TravelID, departureTime > now())) shows me nothing. Has anyone an Idea how I can format the Filter? Many Thanks, Peter