Dear Team,
I want to filter a sharepoint list based on the following criteria:
My List is having 3 columns, namely:
1.) Owner - which is a person or group column
2.) Author - By default our - Sharepoint person or group column
3.) Contributor - which is Multiple person or group column
A filtered item of the list would be related to the user if his name appears in any of the 3 above columns.
At the onstart of the app I get the mail id from the User().
then I need to apply check on First(Split(varUser.Email,"@")).Result. Suppose my mail Id is abcxyz123@pqrs.in
then after first split... code returns me abcxyz123. Now I want to check whether this text i.e. abcxyz123 is in Onwer mail id, Contributors (multiple persons column), or Author. If yes, then filter else do not filter.
Please suggest proper method to do this.