Hello,
i need a help to construct syntax which would help me to gather collection with name which is not contains "Ext."
I tried something like this:
Filter(colMemberCollection, !IsMatch(displayName, " Ext.",MatchOptions.Contains));
Or
ForAll(colMemberCollection,RemoveIf(IsMatch(displayName, " Ext.",MatchOptions.Contains)));
But none of it actually works.
Thank you.