Hi,
This will enter a formula that sums from activecell+1 to the last used row. Note i include no error checking to check if there are cells below the active cell to sum
LastRow = Cells(Rows.Count, ActiveCell.Column).End(xlUp).Row
Cells(LastRow + 1, ActiveCell.Column).Formula = _
"=SUM(R[-1]C:R[" & -(LastRow - ActiveCell.Row) & "]C)"
EDIT... If you want the formula in the active cell which I don't recommend because there could be data in it use this
LastRow = Cells(Rows.Count, ActiveCell.Column).End(xlUp).Row
ActiveCell.Formula = _
"=SUM(R[+1]C:R[" & (LastRow - ActiveCell.Row) & "]C)"
If this post answers your question, please mark it as the Answer.
Mike H