Wildly random question: anyone here just happen to be an expert in Excel? lol
seen from Brazil
seen from United Kingdom

seen from Mexico
seen from Australia

seen from Malaysia
seen from Germany
seen from Sweden
seen from China

seen from United States

seen from Australia

seen from United States

seen from Australia
seen from Maldives

seen from Sweden
seen from Argentina

seen from United States

seen from Mexico

seen from Mexico
seen from China
seen from Russia
Wildly random question: anyone here just happen to be an expert in Excel? lol
Split a delimited list into two columns
Functions used: TEXTSPLIT, TEXTJOIN
Formula: =TEXTSPLIT(TEXTJOIN("~", TRUE, list), "/", "~")
Context: you have a delimted list which you want to split into two columns.
If you go row by row you can do it using TEXTSPLIT on its own, but if you want the result in a single array this won't work. Instead, you can use TEXTJOIN to combine the values into a single string, then use TEXTSPLIT on that.
Step-by-step
Evaluating TEXTJOIN with [delimiter] "~" results in this:
(Setting [ignore_empty] to TRUE will skip any empty rows in the list. Not relevant here but a useful feature).
Then applying TEXTSPLIT with [col_delimiter] "/" and [row_delimiter] "~" gives the desired result: