
Announcements
I have created a small App to view and delete leave requests.
I want to have multiple filters on the screen, so a user can only see their records, and can only edit future events.
Filter('Staff Leave for testing',staffEmail = User().Email)
This filter works, I have tried adding an extra filter on the endDate column from my sharepoint list:
Filter('Staff Leave for testing',staffEmail = User().Email & endDate >= Today())
Doesn't like this, I have tried a few different variants without success.
Hi @dshrubb ,
You are close
Filter(
'Staff Leave for testing',
staffEmail = User().Email &&
endDate >= Today()
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps