VBS Summing

luke6843

New Member
Joined
Jul 14, 2017
Messages
3
I am using the following code:

Code:
Dim r As Long
For r = Cells(Rows.Count, "A").End(xlUp).Row To 3 Step -1
If Range("H" & r).Value <> Range("H" & r - 1) Then
Rows(r).Insert
Rows(r).Insert
End If
Next r
For r = 2 To Cells(Rows.Count, "A").End(xlUp).Row + 1
    If IsEmpty(Range("a" & r).Value) Then
        Range("A" & r).Value = "Total"
        MY_END = Range("A" & r - 1).Row
        MY_START = Range("A" & r - 1).End(xlUp).Row
        If MY_START = 1 Then MY_START = 2
        Range("F" & r).Formula = "=sum(F" & MY_START & ":F" & MY_END & ")"
        Range("F" & r).Copy Range("G" & r)
        r = r + 1
    End If
Next r

The result is as follows:
48 960
126 2520
174 3480 Total

56 1680
230 5160 Total

500 10,000
730 15160 Total

The problem is the totals are adding up the above lines if there is only 1 item to be summed. It should only be summing the numbers until the blank space. I have looked at the code until I am blue in the face. Clearly I am missing something. If anyone can see the solution please let me know.

Thanks
Luke
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Try changing MY_START to
Code:
MY_START = Range("A" & r).End(xlUp).Row

Your original code was setting MY_START to the total row that was above if there was only one row to sum
 
Upvote 0
Or even better - store in additional variable a starting row instead of searching it.

Code:
Dim r As Long, oldr As Long
For r = Cells(Rows.Count, "A").End(xlUp).Row To 3 Step -1
  If Range("H" & r).Value <> Range("H" & r - 1) Then
    Rows(r).Resize(2).Insert
  End If
Next r
oldr = 2
For r = 2 To Cells(Rows.Count, "A").End(xlUp).Row + 1
    If IsEmpty(Range("a" & r).Value) Then
        Range("A" & r).Value = "Total"
        MY_END = r - 1
        MY_START = oldr
        Range("F" & r).Resize(1, 2).Formula = "=sum(F" & MY_START & ":F" & MY_END & ")"
        oldr = r + 2
        r = r + 1 'it's not the best practice to change for-next loop counter "manually", but of course it works
    End If
Next r
End Sub

But now, my_start and My_End are no longer needed, so:
Code:
Dim r As Long, oldr As Long
For r = Cells(Rows.Count, "A").End(xlUp).Row To 3 Step -1
  If Range("H" & r).Value <> Range("H" & r - 1) Then
    Rows(r).Resize(2).Insert
  End If
Next r
oldr = 2
For r = 2 To Cells(Rows.Count, "A").End(xlUp).Row + 1
    If IsEmpty(Range("a" & r).Value) Then
        Range("A" & r).Value = "Total"
        Range("F" & r).Resize(1, 2).Formula = "=sum(F" & oldr & ":F" &  r - 1 & ")"
        oldr = r + 2
        r = r + 1 'it's not the best practice to change for-next loop counter "manually", but of course it works
    End If
Next r
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,633
Messages
6,125,925
Members
449,274
Latest member
mrcsbenson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top