This formula should work for you...
=IF(ISERROR(INDIRECT("Sheet1!A1")), "No Sheet1", INDIRECT("Sheet1!A1"))

Signature
HTH...
Jim Thomlinson
> hi,
>
[quoted text clipped - 8 lines]
> thanks in advance,
> geebee
Dave Peterson - 03 Mar 2008 19:39 GMT
Unless sheet1!a1 contains an error <vbg>:
=IF(ISERROR(CELL("Address",INDIRECT("'Sheet1'!A1"))),
"No Sheet1","yourformulahere")
> This formula should work for you...
> =IF(ISERROR(INDIRECT("Sheet1!A1")), "No Sheet1", INDIRECT("Sheet1!A1"))
[quoted text clipped - 15 lines]
> > thanks in advance,
> > geebee

Signature
Dave Peterson
geebee - 03 Mar 2008 21:44 GMT
it is not working. nothing is happening. i even tried =INDIRECT(TEST1!F20)
and i get a #REF! error.
> This formula should work for you...
> =IF(ISERROR(INDIRECT("Sheet1!A1")), "No Sheet1", INDIRECT("Sheet1!A1"))
[quoted text clipped - 11 lines]
> > thanks in advance,
> > geebee
Dave Peterson - 03 Mar 2008 22:06 GMT
Watch your double quotes:
=indirect("test1!f20")
> it is not working. nothing is happening. i even tried =INDIRECT(TEST1!F20)
> and i get a #REF! error.
[quoted text clipped - 18 lines]
> > > thanks in advance,
> > > geebee

Signature
Dave Peterson
basically just set up a macro that adds a sheet and then the formula
maybe give some more info as to what you're doing, if this doesn't help
Sub Add_Sheet()
Worksheets.Add after:=Worksheets(Worksheets.Count)
Range("A1").Formula = "=Sheet1!C2"
End Sub

Signature
Gary
> hi,
>
[quoted text clipped - 8 lines]
> thanks in advance,
> geebee