Hi
I have a Meeting table which is related to Meeting Attendee table (1:N). I want to filter the Meeting table where some user is in the attendee list, for that I filter the Meeting Attendee table and get the parent meeting id and save it in a collection.
ClearCollect(colMeetingID,AddColumns(ShowColumns(Filter('Meeting Attendee',Attendee.'Primary Email' = User().Email),Meeting),'Meeting ID',Meeting.ID))
Using the above the above collection then I filter the meeting table as shown below:
Filter(Meetings,ID in colMeetingID)
In the above function I am getting this error when there are more than 500 meetings where I am the attendee.
