Thread: Indirect
View Single Post
 
Old 02-11-2010, 09:57 AM
ConneXionLost's Avatar
ConneXionLost ConneXionLost is offline Windows XP Office 2003
Simulacrum
 
Join Date: Jan 2010
Location: Victoria, Canada
Posts: 86
ConneXionLost is on a distinguished road
Default

Hi zleyphox,

INDIRECT returns the reference specified by a "text string".

If you try:
A1:1
A2:=INDIRECT($A$1)

Excel will return a #REF! error because "1" is not a valid reference to a cell.

Try it this way:

=INDIRECT("$A$1")

and it should work.

Cheers,
Reply With Quote