VBA Loop through column, count multiple different values and output total of each in a cell

DrParmeJohnson

New Member
Joined
Feb 28, 2019
Messages
44
Hello, I'm quite awful at VBA and am trying to make a macro that does this:

EFGHI
Item#Item NameQtyTotalTracking
1000xxxx2xxxx
1000xxxx13xxxx
2000xxxx11xxxx

<tbody>
</tbody>

For this format, with the letters on top being default excel columns, I am trying to have the macro go through column E (Item#) and column G (Qty), look for similar Item#'s (i.e 1000) and add up the value in Qty, so for Item# 1000, 3 and output that total in the last cell of the row, in Column H, containing Item# 1000. It would then continue looping through until the end of the Item# column.

I would assume this might be done using like assigned ranges, end of row, and a sum function all bundled into a loop but, I lack the knowledge to do so. So, if someone can assist me in doing this, I would greatly appreciate the assistance.

If there is any need of clarification, as I tend to be bad at explaining things, please do let me know.

Thank you,
DPJ
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
There's probably a better way, but I had an urgent need recently to do something like this and stumbled through some VBA and adjusted mine to your need.
I think this will work for yours:

Code:
Sub InsertTotalAtItemChange()
Dim Rng As Range, LR As Long, i As Integer, j As Integer
Dim WorkRng As Range
LR = Cells(Rows.Count, "E").End(xlUp).Row
Range("E1:I" & LR).Sort Key1:=Range("E1"), Order1:=xlAscending, Header:=xlYes
On Error Resume Next
Set WorkRng = Range("E2:E" & LR)
Application.ScreenUpdating = False

Range("H2:H" & LR) = ""
j = 2
For i = 2 To LR
 If Cells(i, 5) <> Cells(i + 1, 5) Then
 Cells(i, 8).Value = Application.WorksheetFunction.Sum(Range("G" & j & ":G" & i))
 j = i + 1
 End If
Next i
Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0
Assuming ..
- Column E is sorted so all like Item# values are grouped together, and
- Those headings are in row 1
.. then you could try this

Code:
Sub Sum_Qty()
  With Range("H2:H" & Range("E" & Rows.Count).End(xlUp).Row)
    .Formula = "=IF(E2=E3,"""",SUMIF(E$2:E2,E2,G$2:G2))"
    .Value = .Value
  End With
End Sub

If the item numbers are not sorted and you just want the total on the last row of an item number then change the formula line above to
Code:
.Formula = "=IF(COUNTIF(E2:E$" & Range("E" & Rows.Count).End(xlUp).Row & ",E2)=1,SUMIF(E$2:E2,E2,G$2:G2),"""")"
 
Upvote 0
Worked like a charm, so sorry about the delay. It was a work thing and I'm not in on the weekend.

Thank you for your help.
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,717
Members
448,985
Latest member
chocbudda

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