Hi All,
I m in the middle of building an app and want to filter a collection as follows.
1. selectedRequestor,Permission.Value = "Add"
AND
2. Status.Value Rjected OR Cancelled
AND
3. WFType.Value= XYZ
I have used the following condition but ii won't filter out Cancelled records from the selectedRequestor collection. Can someone please help me with this? The selectedRequestor collection ends up with records the Status. Value = Cancelled.
ClearCollect(selectedRequestor1,Filter(selectedRequestor,Permission.Value = "Add" && ( Status.Value <>"Rejected" || Status.Value <>"Cancelled")&& WFType.Value ="XYZ"))
Thank you.