hyperlink to value

I

icestationzbra

i have a question regarding getting the value of a hyperlink.

i have a hyperlink to Sheet2 in cell A1 on Sheet1.

i would like to be able to use that value in a formula in cell B1 o
Sheet1:

=A1!B2

should return essentially the equivalent of Sheet2!B2.

how do i do that
 
F

Frank Kabel

Hi
not possible without VBA. You could use something similar if A1
contains the string
sheet1

then use
=INDIRECT("'" & A1 & "'!B2")
 
Top