View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default How do I use the .Cells property to refer to ActiveCell?

maybe...

dim myRng as range
with activecell
set myrng = .parent.range(.cells(.row,.column).address)
end with

But that seems very convoluted to me. Why can't you just use Activecell?

Caeres wrote:

I need to refer to the active cell using the Cells property (eg
Range.Cells(...)). How do I do this?


--

Dave Peterson