Hi Guy,
Good day to you and thank you for querying in this forum. Whenever you have any problem, feel free to post and community members will be happy to help.
Regards,
Christophe
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I need a formula that takes my table of 5 columns and an arbitray number of rows and creates a list row by row in a single column like the following example. I appreciate your assistance.
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.
Hi Guy,
Good day to you and thank you for querying in this forum. Whenever you have any problem, feel free to post and community members will be happy to help.
Regards,
Christophe
Hi,
Try this formula in cell A3:
=INDEX(C3:G5,INT(SEQUENCE(ROWS(C3:G5)*COLUMNS(C3:G5),,0,1)/COUNTA(C3:G3))+1,MOD(SEQUENCE(ROWS(C3:G5)*COLUMNS(C3:G5),,0,1),COUNTA(C3:G3))+1)
This formula works if you have installed Office 365 for Windows, otherwise you can use this below formula:
=IFERROR(INDEX($C$3:$G$5,INT((ROW(A1)-1)/COLUMNS($C$3:$G$5))+1,MOD(ROW(A1)-1,COLUMNS($C$3:$G$5))+1),"")
HTH