VBA: SUMPRODUCT(CountIf) Help

Sanchrew

New Member
Joined
Jun 19, 2019
Messages
2
Long time lurker, finally broke down and made an account (1st post).

I am in need of an if then statement in VBA. What i need it to do is count how many times each cell in Range B is in range A and does that count equal 10. the following is the formula that works in excel but not in VBA

=SUMPRODUCT(COUNTIF(RangeA,RangeB)=10

When using application.worksheetfunction in VBA i get the type mismatch error code and from my testing it seems its because VBA wants only a single criteria or cell reference in the Countif portion of the formula above.

Anyone have some alternatives that can be used instead?

Quick notes: Range A and B are made up for this example however Range A and Range B are on two difference worksheets for what its worth and both ranges are dynamic (while i know very little VBA i think i can manipulate any ideas you guys have to suit my own code).
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
This code works on my test. You can adjust rngA and rngB as needed.

Code:
Sub test()
Dim rngA As Range: Set rngA = Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
Dim rngB As Range: Set rngB = Range("B1:B" & Range("B" & Rows.Count).End(xlUp).Row)

If Evaluate(Replace(Replace("SUMPRODUCT(COUNTIF(@,!))", "@", rngA.Address), "!", rngB.Address)) Then
    MsgBox "Yes"
Else
    MsgBox "No"
End If

End Sub
 
Last edited:
Upvote 0
This code works on my test. You can adjust rngA and rngB as needed.

Code:
Sub test()
Dim rngA As Range: Set rngA = Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
Dim rngB As Range: Set rngB = Range("B1:B" & Range("B" & Rows.Count).End(xlUp).Row)

If Evaluate(Replace(Replace("SUMPRODUCT(COUNTIF(@,!))", "@", rngA.Address), "!", rngB.Address)) Then
    MsgBox "Yes"
Else
    MsgBox "No"
End If

End Sub

Thanks for the quick reply! I was able to tweak this to get the desired results. Much appreciated friend! For the sake of learning - did you effectively trick VBA into accepting that formula using Replace whereas it normally would not have accepted the code or am I way off?
 
Upvote 0
No, the 'Replace' is just there to make it look a little more readable without using a bunch of '&' operators. The 'Evaluate' function is the one that makes the magic happen. Here is the code that does the same thing without 'Replace'.

Code:
Sub testII()
Dim rngA As Range: Set rngA = Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
Dim rngB As Range: Set rngB = Range("B1:B" & Range("B" & Rows.Count).End(xlUp).Row)

If Evaluate("SUMPRODUCT(COUNTIF(" & rngA.Address & "," & rngB.Address & "))") >= 2 Then
    MsgBox "Yes"
Else
    MsgBox "No"
End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,892
Messages
6,122,112
Members
449,066
Latest member
Andyg666

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