A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Use ROW to update the index.
=IFERROR(INDEX(AccountList,ROW()-5,1),"")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I've got this dynamic named range called AccountListwith over a thousand rows
I want to be able to take the entire contents of AccountList column 1 (AccountID) and copy it into column A of Sheet2 beginning in row 6 of Sheet2. The INDEX function kind of gets me there, but I don't really want to specify the row number for all 1,000 rows (and growing) in AccountList
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
Hi,
Use ROW to update the index.
=IFERROR(INDEX(AccountList,ROW()-5,1),"")
Hi,
If you wish to bring over all AccountID's from the other worksheet, then just link the first cell and drag down. I wonder why you need to use the INDEX function.