View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
PapaDos PapaDos is offline
external usenet poster
 
Posts: 208
Default A1 reference style

No need to create "range of range"

Application.Goto Reference:=activesheet.cells(1,1)

or

Application.Goto Reference:=activesheet.range("a1")

should work just fine...

--
Regards,
Luc.

"Festina Lente"


"T. Valko" wrote:

ooops!

Disregard the last post.

It does in fact work just fine.

Thanks, Martin!

Biff

"T. Valko" wrote in message
...
Martin,

I tried this:

Application.Goto Reference:=ActiveSheet.Range(ActiveSheet.Range("A1 "))

I get a run-time error 1004

Let me further explain:

A1 contains a defined name like Product1. Product1 refers to cell A100. I
have the macro attached to a button. I click the button and are taken to
Product1 (cell A100).

It works just fine using the R1C1 reference but I'm trying to simplify it
for others who may be confused seeing R1C1.

P.S.: the line of code I posted was generated by the macro recorder.
Application.Goto Reference:="INDIRECT(R1C1)"


Thanks
Biff

"Martin Fishlock" wrote in message
...
Biff,

Goto requires a range object. There you need to do the following:

Application.Goto Reference:=ActiveSheet.Range(ActiveSheet.Cells(1, 1))

'or

Application.Goto Reference:=ActiveSheet.Range(ActiveSheet.Range("A1 "))

But it may be easier just to do thew following:

range(ActiveSheet.Range("A1")).select

--
Hope this helps
Martin Fishlock
Please do not forget to rate this reply.


"T. Valko" wrote:

Hi folks!

Application.Goto Reference:="INDIRECT(R1C1)"

Why won't that accept an A1 reference?

Both of these fail:

Application.Goto Reference:="INDIRECT(A1)"
Application.Goto Reference:="INDIRECT("A1")"

Thanks
Biff