To challanging for me, Need help!!!

bedsy

New Member
Joined
Jun 29, 2016
Messages
34
Hi All,

reasonably new to VBA and need some help with my project.

I have a spread sheet that has customer abbreviation in Column "F" and a range of numbers "L:AA"

what I need is VBA code to find all occurrences for a each customer in column "F" and add each column individually and place total of each column in the corresponding cell on row 3.

"F" 5 (Row 3)
Customer 1 AB 1
AB 4
Customer 2 AC 6
AD 5

I have the below code with finds the customer "AB" and calculates the corresponding columns and places the total in row 3 but only works for the 1st column, not the complete row


Private Sub CommandButton1_Click()
Dim myval As Integer
Dim MyRange As Range
Dim MyRange2 As Range
Dim cell As Range

Set MyRange = Worksheets("Forecast").Range("F:F")
Set MyRange2 = Worksheets("Forecast").Range("L4:AA300")
myval = Application.WorksheetFunction.SumIf(MyRange, "AB", MyRange2)
Range("L3").Value = myval
End Sub

Can someone smarter than me please assist.

Thanks all.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Short Answer.. you cant do a sumif with multiple sum columns. You can do a SumProduct like this =SumProduct(F4:F300 * (L4:AA300 = "AB"))


so for your VBA... Try this.


Code:
[COLOR=#333333]Private Sub CommandButton1_Click()[/COLOR]
[COLOR=#333333]Dim MyRange As Range, [/COLOR][COLOR=#333333]MyRange2 As Range
[/COLOR][COLOR=#ff8c00]'Some declarations removed because they were not necessary... [/COLOR]

[COLOR=#333333]Set MyRange = Worksheets("Forecast").Range("[/COLOR][COLOR=#ff0000]F4:F300[/COLOR][COLOR=#333333]") [/COLOR][COLOR=#ff0000]'changed to an actual range... not the entire column...[/COLOR][COLOR=#333333][/COLOR]
[COLOR=#333333]Set MyRange2 = Worksheets("Forecast").Range("L4:AA300")[/COLOR]
[COLOR=#0000ff]
Range("L3").Value = Evaluate("SUMPRODUCT(" & MyRange2.Address & "* (" & MyRange.Address & "=""AB""))")
'Took away the integer declaration, myval, since you weren't really doing anything with it... [/COLOR]

[COLOR=#333333]End Sub

[/COLOR]
 
Upvote 0

Forum statistics

Threads
1,215,504
Messages
6,125,183
Members
449,212
Latest member
kenmaldonado

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