Thread: cell address
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
papou[_10_] papou[_10_] is offline
external usenet poster
 
Posts: 27
Default cell address

Hello
Public MyCellAddr As String
Sub DefineCellAddress()
MyCellAddr = ActiveCell.Address
Worksheets("Feuil1").Range("A1").Value = MyCellAddr
End Sub
Sub GotoMyCellAaddress()
Range(MyCellAddr).Select
End Sub

HTH
Cordially
Pascal

"scrabtree" a écrit dans le message de
...
I need a code that will record the active cell address in
another cell (say store it in Sheet1 A:1).

I then need a code that can later look at the address that
is stored in Sheet1 A:1 and go to that referenced
cell.???