Does this do the same thing as your code?
Sub UpdateForm()
Dim n As Long
'Barnegat = 0
'Bridgeton = 1
'Galloway = 2
'Hamonton = 3
'Mantua = 4
'Millville = 5
'Ventnor = 6
'Vineland = 7
For n = 0 To 7
Cells((n + 1) * 5, "N") = Cells((n + 1) * 5, "N") + Cells((n + 1) * 5, "B")
Cells((n + 1) * 5, "O") = Cells((n + 1) * 5, "O") + Cells((n + 1) * 5, "C")
Cells((n + 1) * 5, "P") = Cells((n + 1) * 5, "P") + Cells((n + 1) * 5, "D")
Cells((n + 1) * 5, "Q") = Cells((n + 1) * 5, "Q") + Cells((n + 1) * 5, "E")
Cells((n + 1) * 5, "R") = Cells((n + 1) * 5, "R") + Cells((n + 1) * 5, "F")
Cells((n + 1) * 5, "S") = Cells((n + 1) * 5, "S") + Cells((n + 1) * 5, "G")
Next
End Sub
Bookmarks