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

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
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,215,460
Messages
6,124,949
Members
449,198
Latest member
MhammadishaqKhan

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