SUMIFS with a dynamic range and criteria fields in VBA

EggcellExperiments

New Member
Joined
Jan 11, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi everyone!

Trying to do a SUMIFS in VBA with the following setup, but lacking the knowledge to execute it correctly:

=SUMIFS(sum_range, criteria_range1, criteria1)
1. sum_range = dynamic range six columns to the left of the active cell's position
2. criteria_range1 = dynamic range nine columns to the left of the active cell's position
3. criteria1 = stored two cells to the left of the active cell's position in a table

I figured out how to select the column six columns to the left of my activated cell's position:
ActiveCell.Offset(0, -6).Range("A1").Select
Range(Selection, Selection.End(xlDown)).Select

I tried plugging it into a basic SUM formula but am getting a syntax error.

ActiveCell.FormulaR1C1 = "=SUM(ActiveCell.Offset(0, -6).Range("A1:A200"))"

Trying to figure out how to store each part of the formula for use. I recorded a macro in R1C1 notation but it only works once since each month, a new data set is appended to the worksheet in the same format to create a time series of data.

Any insights or examples would be appreciated. :)

Thanks in advance,

EE
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
try this:
VBA Code:
Sub SumIfsVBA()

Dim sumRange As Range
Set sumRange = ActiveCell.Offset(0, -6).Resize(ActiveCell.CurrentRegion.Rows.Count, 1)

Dim criteriaRange As Range
Set criteriaRange = ActiveCell.Offset(0, -9).Resize(ActiveCell.CurrentRegion.Rows.Count, 1)

Dim criteria1 As String
criteria1 =  ActiveCell.Offset(0,-2).Value

If criteria1 = "" Then
    criteria1 = """"
End If

ActiveCell.FormulaR1C1 = "=SUMIFS(" & sumRange.Address & "," & criteriaRange.Address & "," & criteria1 & ")"

End Sub
 
Upvote 0
On the second to last line, getting
"Run-time error '1004':
Application-defined or object-defined error.

VBA Code:
ActiveCell.FormulaR1C1 = "=SUMIFS(" & sumRange.Address & "," & criteriaRange.Address & "," & criteria1 & ")"
 
Upvote 0

Forum statistics

Threads
1,216,081
Messages
6,128,694
Members
449,464
Latest member
againofsoul

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