Thread
:
cell reference help
View Single Post
#
2
Posted to microsoft.public.excel.programming
Don Guillett[_4_]
external usenet poster
Posts: 2,337
cell reference help
try this instead. BTW the ,true will make it scroll from that point. If not
needed, you can delete that part.
Application.Goto sheets("sheet1").Range("A1"), True
--
Don Guillett
SalesAid Software
"scrabtree" wrote in message
...
The Sub Goto MyCell Aaddress () below keeps returning an
run time error, application or object defined error. I
also tried this and get the same error:
Sub find()
Application.Goto Range(Range("Sheet1!A1").Value), True
End Sub
Public MyCellAddr As String
Sub DefineCellAddress()
MyCellAddr = "'" & ActiveCell.Parent.Name & "'!" &
ActiveCell.address
Worksheets("Sheet1").Range("A1").Value = MyCellAddr
End Sub
Sub GotoMyCellAaddress()
Range(MyCellAddr).Select
End Sub
Reply With Quote
Don Guillett[_4_]
View Public Profile
Find all posts by Don Guillett[_4_]