Thread: naming cells
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Gary K Gary K is offline
external usenet poster
 
Posts: 2
Default naming cells

Try this John - assuming your cell is a range named "SS" -

Sub SSAN()
Dim Social As String
Social = Range("SS").Value
MsgBox Social
End Sub

Gary