assigning a formule to each cel in a column

  • Thread starter Thread starter solo_razor
  • Start date Start date
S

solo_razor

hello,

I have a problem, i want to assign every cell from 1 to 200 from a
certain column with a formule that calculates one cel minus another.
E.G.

cel f2 contains 20
cel g2 contains 34
cel h2 must than contain a formula =sum(f2-g2)
The formula self is not difficult using the macro recorder, but i want
to use one formula for an entire column

Regards,
Niek
 
This will copy 'Your Formula' down from H2 to where the last number is in
column G.

Range("H2").Select
ActiveCell.FormulaR1C1 = "Your Formula"
Range("H2", Range("G2").End(xlDown)).Offset(0, 1).FillDown

Mike
 
Another approach:

Set rng = Range(Cells(2,6),Cells(rows.count,6).End(xlup))
rng.offset(0,2).Formula = "=F2-G2"

Using sum is redundant.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top