Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub reduceBal()
Set r = Sheet1.UsedRange
lastr = r.Rows.Count
For i = 3 To lastr
If Cells(i, 1) = Cells(i - 1, 1) And Cells(i, 2) = Cells(i - 1, 2) Then
Cells(i, 6) = Cells(i, 3) + Cells(i - 1, 3)
Cells(i, 7) = Cells(i, 4) + Cells(i - 1, 4)
Cells(i, 8) = Cells(i, 5) + Cells(i - 1, 5)
End If
Next
End Sub