View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default assign value to a cell on next column

What happens when you do each of these?



wrote:

I´m triying to assign a value to next cell (+ 1 column) of active one,
but doesn´t work in this ways:

Cells(ActiveCell.Row, ActiveCell.Column + 1).Value = "888"

ActiveCell.Offset(0, 1).Value = 2222

some help???

thanks


--

Dave Peterson