Share via

return a value based on a given cell address

Anonymous
2010-07-23T16:18:48+00:00

I am going to retrieve the numbers every other ten rows in a column. I create a list of address of the cells that I want to retrieve

$A$2

$A$22

$A$32

$A$42

$A$52

...

However, I do not know how to read the numbers within the cells with the address. Or is there other simple way to do it without reading the address?

Thanks.

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
2010-07-23T16:27:42+00:00

With $A$2 in Cell B2 you cluld use a formula like this

=indirect(B2)

Note that this formula is volatile and has high calculation overhead. A better solution might be to put the number 2 in Cell C2 and use a formula such as this

=index($A$1:$A$1000, C2)


If this post answers your question, please mark it as the Answer... Jim Thomlinson

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2010-07-23T16:57:52+00:00

    thanks alot

    Was this answer helpful?

    0 comments No comments