View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Getting Started - Referencing Cells

ActiveCell.offset(1,0).Value = 2 * x + 1

--
Regards,
Tom Ogilvy


"Tatakau" wrote in message
...
Hey,

I've been coding a bit in Access lately, so I know the basics of VB. What

I
don't know is how to reference specific cells. I know that the current
column is '.column', and the current row is '.row', and the value of the
current cell is '.value'.

I am trying to assign a value to the cell right below the current cell.

I'd
like to do something like this:

(.column, .row + 1).value = 2 * x + 1

Anyone know how to code this?

Thanks!

Nick