VBA: Use a String Array as condition in SUMIFS

dragonx

New Member
Joined
Nov 5, 2018
Messages
3
Hey folks,

I try to sum a column of numbers, based on "string" conditions in anothe column e.g. I want to sum the values in column two which have an A or B in column one.

A 1
B 2
A 4
B 2
C 5
C 7

At the moment I try:

Sub ECS()
Dim EC() As String
EC = Array("DE", "DK", "EE")
Range("I21").Value = Application.WorksheetFunction.SumIfs(Worksheets("Ref").Range("L:L"), Worksheets("Ref").Range("C:C"), "=" & EC)
End Sub

I also tried just EC as a condition and defining EC as a variant but I always get the error "type not compatible" At the end my array will contain over 50 strings.

I found https://www.mrexcel.com/forum/excel-questions/735182-array-values-sumif-criteria-vba.html

but I can't modify it for my request. It also dont know how to handle the {} brackets in VBA and why they are used in this particular formular.

any help would be much appreciated.

kind regards,

dragonx
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Since you only have two conditions, why not just do it the direct way...

=SUMIF(A$1:A$6,"A",B$1:B$6)+SUMIF(A$1:A$6,"B",B$1:B$6)
 
Upvote 0
Here's one way to do it:

Code:
Sub a1076613a()
Dim ary, n
Dim x As Long
'https://www.mrexcel.com/forum/excel-questions/1076613-vba-use-string-array-condition-sumifs.html
ary = Array("A", "B", "C")
For Each n In ary
x = x + WorksheetFunction.SumIfs(Range("B:B"), Range("A:A"), n)
Next
Range("C1") = x
End Sub


Excel 2007 32 bit
A
B
1
A
1​
2
B
2​
3
C
3​
4
D
4​
5
A
5​
6
E
6​
7
C
7​
Sheet: Sheet1
 
Upvote 0
@Rick Rothstein: Thank you for the hint but I misrepresented the problem as a little to simple, at the end my sumifs will contain many more conditions.
@Akuini: That was helpful =). It seemed to work first, but than I expanded my array to contain all conditions and it seems to not work properly. Could it be that the "loop" stops as soon as one array element is not in the column it checks? Because it compared my array and the column by hand it does only sum up for a part of the array elements.

Code:
Sub ECSALES()
Dim EC, n
Dim X, Y As Long
Y = CLng(Application.WorksheetFunction.EoMonth(Range("F2"), 0))
EC = Array("BE", "BG", "DK", "EE", "FI", "FR", "GR", "IE", "IT", "HR", "LV", "LT", "LU", "MT", "NL", "AT", "PL", "PT", "RO", "SE", "SI", "SK", "ES", "CZ", "HU", "GB", "CY")
For Each n In EC
X = X + Application.WorksheetFunction.SumIfs(Worksheets("Ref").Range("L:L"), Worksheets("Ref").Range("C:C"), n, Worksheets("Ref").Range("B:B"), "BE", Worksheets("Ref").Range("D:D"), "VAT", Worksheets("Ref").Range("R:R"), "<=" & Y)
Next
Range("I21") = X
End Sub

Not all part of the array EC are necessarly in the column that should be checked. Also, If we are at it I also need to reverse the "filter". Basically sumup all values for which the condition column does not contain the elements of the string array EC. As that will be all Non-EU countries of the world I can not enter them manually as a different array because they have not all been entered into the dataset and I do not know whether they will be entered using the correct codes so I want to go for all values where the condition column does not contain an array EC element.

Sorry, but I am a VBA beginner so I am justing getting into it.

Kind regards,

dragonxhttps://www.mrexcel.com/forum/members/rick-rothstein.html
 
Upvote 0
@Rick Rothstein: Thank you for the hint but I misrepresented the problem as a little to simple, at the end my sumifs will contain many more conditions.
@Akuini: That was helpful =). It seemed to work first, but than I expanded my array to contain all conditions and it seems to not work properly. Could it be that the "loop" stops as soon as one array element is not in the column it checks? Because it compared my array and the column by hand it does only sum up for a part of the array elements.


Not all part of the array EC are necessarly in the column that should be checked. Also, If we are at it I also need to reverse the "filter". Basically sumup all values for which the condition column does not contain the elements of the string array EC. As that will be all Non-EU countries of the world I can not enter them manually as a different array because they have not all been entered into the dataset and I do not know whether they will be entered using the correct codes so I want to go for all values where the condition column does not contain an array EC element.

Sorry, but I am a VBA beginner so I am justing getting into it.

Kind regards,

dragonx

Sorry, I don't quite understand what you mean.
Can you post some example to describe your problem.
 
Upvote 0
Sorry, I don't quite understand what you mean.
Can you post some example to describe your problem.

Please excuse, I noticed my array was just incomplete :unsure: Your solution works great! :pray:

And I noticed for the "opposite" case I can just take the sum of the entire column first and substract the amount I got through my SumIFs function :

Thank you very much for the help!

I am a little confused about the variable type however. I thought long would only store "whole" numbers, but my output includes decimals. That is what i want of course, but just to be on the safe site, should I Dim X as a Single? The numbers that have to be stored wont exceed a few million.

kind regards, dragonx
 
Upvote 0
Please excuse, I noticed my array was just incomplete :unsure: Your solution works great! :pray:

And I noticed for the "opposite" case I can just take the sum of the entire column first and substract the amount I got through my SumIFs function :

I thought long would only store "whole" numbers, but my output includes decimals.

kind regards, dragonx

You may declare the variable as Double.
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,932
Members
449,480
Latest member
yesitisasport

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