Hi
I'm trying to filter a gallery with multiple criteria but I can't seem to get it fully working ! no errors it's just not filtering on one of the fields. The field that's not working is the TypeOfRequest field. Here's what I've tried
Filter(
colGridData,
VarMyProfile.mail in ProjectReaders.Email Or SubmittedBy.Email = VarMyProfile.mail,RequestStatus.Value <> "BackLog",RequestStatus.Value <> "Complete",RequestStatus.Value <> "De-Prioritized", TypeOfRequest<>"Legal"
Have tried this
Filter(
colGridData,
VarMyProfile.mail in ProjectReaders.Email Or SubmittedBy.Email = VarMyProfile.mail,RequestStatus.Value <> "BackLog",RequestStatus.Value <> "Complete" ,RequestStatus.Value <> "De-Prioritized" And TypeOfRequest<>"Legal"
Filter(
colGridData,
VarMyProfile.mail in ProjectReaders.Email Or SubmittedBy.Email = VarMyProfile.mail,RequestStatus.Value <> "BackLog",RequestStatus.Value <> "Complete",RequestStatus.Value <> "De-Prioritized" || TypeOfRequest<>"Legal"
and a couple more I think ! No errors it's filtering on all the other requirements fine just not filtering out the Type of Request (It's a single line of text field in sharepoint)
TIA