A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Or:
=WRAPCOLS(A1:A1000,100)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello everyone,
I have 1 column of data in excel, its 1000 rows long, but I am doing a data merge onto an imposition so need 10 columns instead.
So column one would have codes 1-100, column 2 would have 101-200 etc etc ending in column 10 having codes 901-1000
Can anyone help.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Or:
=WRAPCOLS(A1:A1000,100)
Answer accepted by question author
If you have Microsoft 365:
=MAKEARRAY(100, 10, LAMBDA(r, c, INDEX(A1:A1000, 100*(c-1)+r)))
where A1:A1000 is the column.
Thank you both this was perfect!