In my canvas app, I want to filter and get data that matches one or more columns. Currently I am getting a collection by filtering a CDS (Dataverse) table:
ClearCollect(
collActiveRequests,
Filter(
'ASR Requests',
'ASR Requests (Views)'.'Active Requests'
)
Now I want to filter so that I get all records which match one of the conditions:
1. UserField1 = User()
2. UserField2 = User()
3. UserField3 = User()
As you can see I want to get all records in which the current user has one or more association with the record and put it in a collection.
Any ideas please?