Hi
I've populated a UserList collection with basic info in
I want to search user and apply filters before a gallery lists the results.
Now the additional filters are going to be from different sources
so far I have under gallery> items:- (it complains about highlighted red)
Search(If(
CountRows(selectedEstab)>0,Filter(UsersList,Establishment in selectedEstab.Value),
CountRows(selectedStaffType)>0,Filter(UsersList,GroupType in selectedStaffType.Value),
CountRows(selectedTrain)>0,Filter(StaffTrainingRegister,course_completed in selectedTrain.Value, attendee_email in UsersList.mail)
),First(SearchUser).Value, "displayName")
the selected...... are collections populated by checked checkboxes
StaffTrainingRegister is a excel table,
So I want to check if the searched staff have completed the selected training
Any ideas?