Backboards: 
Posts: 152
In response to "I need remedial help in Excel for stacking columns (because it's so needlessly more complex than Google sheets)" by Max

found a workable solution, though I think it's stupidly wordy compared to Google Sheets

how is there not a function that simply allows =STACK(range1,range2,...) ???


=LET(
rows1,ROWS(r.1),
rows2,ROWS(r.2),
cols1,COLUMNS(r.1),
rowindex,SEQUENCE(rows1+rows2),
colindex,SEQUENCE(1,cols1),
IF(
rowindex<=rows1,
INDEX(r.1,rowindex,colindex),
INDEX(r.2,rowindex-rows1,colindex))


Post a message   top
Replies are disabled on threads older than 7 days.