A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
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