View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default singel cell reference

Hi Guye,

'-------------------
how do i make a reference to a single specific cell (for example D1)
in a amcro
'-------------------

I suspect that there may be more to your question than
is immediately apparent, but try something like:

'=============
Public Sub Tester()
Dim rng As Range

Set rng = Range("D1")
MsgBox rng.Address(0, 0)

End Sub
'<<=============


---
Regards,
Norman