View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default How can I use the active cell address as a value

One way:

To fill row 2:100:

Cells(2, ActiveCell.Column).Resize(99, 1).FormulaR1C1 = _
"=R[-1]C[]+1"


In article
,
mohavv wrote:

How can I use the active cell address as a value as a start for a
macro.

I want to fill a certain range in one column with a formula.
This should be the column in which the active cell is positioned.

Any idea?

Cheers,

Harold