View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Rich Rich is offline
external usenet poster
 
Posts: 298
Default How to specify 2nd cell of currently active row?

Thanks!

Rich

"Ron de Bruin" wrote:

Hi Rich

For a row
Cells(ActiveCell.Row, 2).Value = 100

For a column
Cells(2, ActiveCell.Column).Value = 100


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Rich" wrote in message ...
In a macro, I want to be able to set the value of the second cell of the
currently active row. How can I calculate the correct range or offset to do
this? For example, if the currently active cell is An, I want to set A2 to a
specific value.

Thanks,

Rich