using cell reference in a formula

  • Thread starter Thread starter barb24
  • Start date Start date
B

barb24

What I am trying to do is something like this. Using B17 which will
return a letter, say G so that this formula (or actually a corrected
version of it!)
=SUM("B17"&2:"B17"&2000)

would give =SUM(G2:G2000)

Could anyone suggest how this can be done,
Thanks,
Barbara
 
What I am trying to do is something like this. Using B17 which
will return a letter, say G so that this formula (or actually a
corrected version of it!)
=SUM("B17"&2:"B17"&2000)

would give =SUM(G2:G2000)

This would be one way:

=SUM(INDIRECT(B17&"2:"&B17&"2000"))
 
Back
Top