Subscribe
Notify of
guest

3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

Ioan Dudas
Ioan Dudas
Wednesday 13th March 2024 08:53

Byrow,Bycol,Map, can’t handle formulas that return multiple values. So you can’t use inside them formulas that return more than one value, such as textsplit or filter (when filter returns more than one value).

Wanderlei
Wanderlei
Monday 3rd June 2024 22:34

Hello
I had the same problem. You can solve it as follows, but all strings must have the same length.

'=LET(
_Input, {"A|B|C", "1|2|3", "D|E|F", "4|5|6", "G|H|I", "7|8|9", "J|K|L", "0|1|2", "M|N|O", "4|1|9" },
_TextJoin, TEXTJOIN("|",,_Input),
_TextDivide, TEXTSPLIT(_TextJoin, "|"),
_BreakRow, WRAPROWS(_TextDivide,3),
_BreakRow
)