Sum to active cell

G

GregR

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(activecell,0))", but it gives
me a compile error. TIA

Greg
 
O

Otto Moehrbach

Greg
One way:
ActiveCell.Value=Application.Sum(Range(Cells(5,ActiveCell.Column),(Cells(ActiveCell.Row-1,ActiveCell.Column)).
HTH Otto
 
B

Bob Phillips

Activecell.formula="=SUM(" & Cells(5,Activecell.Column).Address & ":" &
Activecell.Offset(-1,0).Address & ")"

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
J

JE McGimpsey

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.
 
Top