Forum Discussion
meklund
Aug 22, 2019Copper Contributor
TextJoin Partial Matches?
Hello, I have a list of usernames that have access to one or more location codes separated by commas. I also have a list of locations with their code on another tab. I have been trying every whi...
Subodh_Tiwari_sktneer
Aug 23, 2019Silver Contributor
You may tweak your formula like this as IFERROR and >0 are not required here and can be replaced with ISNUMBER.
=TEXTJOIN(",",TRUE,IF(ISNUMBER(FIND(TRIM([@Code]),User_access[Website access])),User_access[Username],""))
Kodipady
Aug 23, 2019Iron Contributor
Great, that works too. thanks for refining !!
- Subodh_Tiwari_sktneerAug 23, 2019Silver Contributor
No problem!
- meklundAug 23, 2019Copper Contributor
Works perfect! Thanks so much guys. Was scratching my head on that one.
- Subodh_Tiwari_sktneerAug 23, 2019Silver Contributor
You're welcome! Glad we could help.