Share via

Dynamic Named Range copy to another Worksheet

Anonymous
2015-12-28T15:26:29+00:00

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

Microsoft 365 and Office | Excel | For home | Windows

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.

0 comments No comments

Answer accepted by question author

Anonymous
2015-12-28T16:26:28+00:00

Hi,

Use ROW to update the index.

=IFERROR(INDEX(AccountList,ROW()-5,1),"")

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Ashish Mathur 101.9K Reputation points Volunteer Moderator
    2015-12-29T00:15:53+00:00

    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.

    Was this answer helpful?

    0 comments No comments