VBA Code:
'Insert Column to the Right of Encumbered Column
Rows(1).Find("Encumbered").Offset(, 1).EntireColumn.Insert
Columns("V:V").Select
Range("V1").Select
ActiveCell.FormulaR1C1 = "Total"
Dim LR As Long 'LR = Last row
LR = Cells(Rows.Count, "A").End(xlUp).Row 'Finds last row in column A
Range("V2").FormulaR1C1 = "=RC[1]+RC[2]-RC[74]"
Range("V2:V" & LR).FillDown 'Copy the formula to the last row
Range(Selection, Selection.End(xlDown)).Select
Columns("V:V").EntireColumn.AutoFit
Last edited by a moderator: