I need to write a macro that will sum all of the values above the selected cell. Rows above cell are variable, so it has to be flexible. Below is my code. I believe the sum formula will be where the ***** are. Any help would be appreciated. Thanks.
Range("E1").Select
Selection.End(xlDown).Select
ReportLastRow = ActiveCell.Row
ActiveCell.Offset(rowOffset:=1, columnoffset:=0).Activate
ActiveCell.FormulaR1C1 = _
"Total"
ActiveCell.Offset(rowOffset:=0, columnoffset:=1).Activate
ActiveCell.FormulaR1C1 = *****
Bookmarks