View Single Post
  #5   Report Post  
GregR
 
Posts: n/a
Default

JE, Bob and Otto, you guys rock as usual. Thanks

Greg
"JE McGimpsey" wrote in message
...
One way:

With ActiveCell
.Formula = "=SUM(" & Range(Cells(5, .Column), _
Cells(.Row - 1, .Column)).Address & ")"
End With

You can't sum the activecell too, without causing a circular reference,
so I assumed you wanted to sum to the row before.

In article ,
"GregR" wrote:

I have a macro, where I am trying to do a sum from row 5 to the active

cell.
How do I designate the range. Here is what I have;

Activecell.formula="sum(range(cell(5,0),cell(activ ecell,0))", but it

gives
me a compile error. TIA

Greg