View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Gary Keramidas Gary Keramidas is offline
external usenet poster
 
Posts: 2,494
Default Remove the $ from a cell reference

les, try one of these and see if it's what you want.

Sub test()
MsgBox ActiveCell.Address
MsgBox ActiveCell.Address(0, 0)
MsgBox ActiveCell.Address(0)
MsgBox ActiveCell.Address(, 0)
End Sub

--


Gary


"Les" wrote in message
...
Hi,

could anybody help with this please ?

I need the cell reference to read A25 and not $A$25

Any help much appreciated
--
Les