View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default assigning a formule to each cel in a column

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.

--
Regards,
Tom Ogilvy

"solo_razor" wrote in message
...
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



------------------------------------------------
~~ Message posted from http://www.ExcelTip.com/
~~ View and post usenet messages directly from http://www.ExcelForum.com/