Please need your help.
I have an excel file with this following structure, that one row is divided into the next two rows:
initial
And need finally get this one. Every third row need to be combined into one long row formed from the next two rows:
final
thanks.
Please need your help.
I have an excel file with this following structure, that one row is divided into the next two rows:
initial
And need finally get this one. Every third row need to be combined into one long row formed from the next two rows:
final
thanks.
Share Improve this question edited 2 days ago user46956 asked 2 days ago user46956user46956 33 bronze badges1 Answer
Reset to default 0This formula uses TOROW
and WRAPROWS
=LET(tab,G3:K11,
WRAPROWS(TOROW(tab),COLUMNS(tab)*3))
Set the tab
variable to the source range.
The formula first create a single row of all the data, and then wrap it at the multiple of columns by three.