VBA SumIFS error

Gojira

New Member
Joined
Nov 7, 2017
Messages
17
Hi,

I'm getting an error running this code, can anyone help me by pointing out why?


Code:
Dim SumRange As Range
Dim CritRange1 As Range
Dim Criteria1 As String
Dim CritRange2 As Range
Dim Criteria2 As String




Set CriteriaRange1 = Range("C3:C" & LastRow)
Criteria1 = Sheets("Forecast Data").Cells(3, 2).Value
Set CriteriaRange2 = Range("D3:D" & LastRow)
Criteria2 = Sheets("Forecast Data").Cells(3, 3).Value
Set SumRange = Range("H3:H" & LastRow)


Sheets("Forecast Data").Cells(3, 5).Value = Evaluate("=SUMIFS(SumRange,CriteriaRange1,""" & Criteria1 & """,CriteriaRange2,""" & Criteria2 & """)")

It's currently returning a #NAME ? error.

Can anyone help me make this work?
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Try this.
Code:
Sheets("Forecast Data").Cells(3, 5).Value = Evaluate("=SUMIFS(" & SumRange.Address & "," & CriteriaRange1.Address & ",""" & Criteria1 & """," & CriteriaRange2.Address & ",""" & Criteria2 & """)")
 
Upvote 0

Forum statistics

Threads
1,216,088
Messages
6,128,744
Members
449,466
Latest member
Peter Juhnke

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