Can I merge a multi-dimensional array into a single dimensional array in Google Sheets?
问题 I'm looking to combine several columns into one, I do not care about order. For example, I have a column with a collection of tags: | || A | | = || ====================== | | 1 || Tags List | | 2 || Loon, Diver, Gaviform | | 3 || Shoveler, Anseriformes | | 4 || Roc | If I use the formula =ARRAYFORMULA(SPLIT(A2:A)) in B2 , I would get the following output: | || B | C | D | | = || ======== | ============ | ========= | | 1 || | | | | 2 || Loon | Diver | Gaviform | | 3 || Shoveler | Anseriformes