I'm getting an error on the last line. Can anyone point out my error. I'm pretty new at this, but getting better.
'Last Row
Dim LastRow As Long
'Recalculate the LAST real row
LastRow = ActiveSheet.Cells.Find(What:="*", _
SearchDirection:=xlPrevious, _
SearchOrder:=xlByRows).Row
'Set Column and Row Totals
Range("J" & LastRow + 2).Select
ActiveCell.FormulaR1C1 = "=SUM(J5:J + LastRow)
'Last Row
Dim LastRow As Long
'Recalculate the LAST real row
LastRow = ActiveSheet.Cells.Find(What:="*", _
SearchDirection:=xlPrevious, _
SearchOrder:=xlByRows).Row
'Set Column and Row Totals
Range("J" & LastRow + 2).Select
ActiveCell.FormulaR1C1 = "=SUM(J5:J + LastRow)