Forum Discussion
manhuy
Mar 14, 2023Copper Contributor
Extract text from Comma Separated Cell to another Comma Separated Cell
Hi Community, I was wondering if anyone could help me with this problem. Any method to achieve "Desired Outcome" column would be appreciated. Data Desired Outcome BAR-Barcelona (1), RM-...
- Mar 14, 2023
=LET( ζ, TEXTSPLIT(A1, "-", " "), TEXTJOIN(", ", , FILTER(TAKE(ζ, , 1), 1 - ISNA(TAKE(ζ, , -1)))) )
JosWoolley
Mar 14, 2023Iron Contributor
=LET(
ζ, TEXTSPLIT(A1, "-", " "),
TEXTJOIN(", ", , FILTER(TAKE(ζ, , 1), 1 - ISNA(TAKE(ζ, , -1))))
)
Hecatonchire
Mar 14, 2023Iron Contributor