I have a list with two columns as the following specification
requesters : email (text) ,
account_no(text) - may have multiple values separated by a comma,
for example :
email account_no
joe@abc.com 121323,12022
John@abc.com 123231
Jane@abc.com 10222,102231
In the onStart I am using the following formula to extract the user_account_no.
If (User().Email in Requesters.email, Set(user_account_no, Requesters.account_no)); doesn't work, I know I may have to use lookup or filter to find the matching item. I add a lookup function like this. If (User().Email in Requesters.Title,
Set(user_account_no, LookUp(Requesters, Title=User().Email, account_no) )
); still doesn't work.