VBA Sumif change reference range

xcelnovice

Board Regular
Joined
Dec 31, 2011
Messages
81
Hi below is my code. How Can I change this to not only look at B5 but move down & look at B6 & B7 and so on.

Code:
Sub Sumif()
 
Dim SumRng1 As Range
Set SumRng1 = Sheets("Sheet1").Range("B:B")
 
Dim SumRng2 As Range
Set SumRng2 = Sheets("Sheet1").Range("E:E")
 
Dim SumRef1 As Range
Set SumRef1 = Sheets("Sheet2").Range("B5")
 
Dim ws As Worksheet
Set ws = Sheets("Sheet2")
 
Dim i As Integer
 
 
For i = 5 To 8
    
     ws.Cells(i, 4) = Application.WorksheetFunction.Sumif(SumRng1, SumRef1, SumRng2)
    
    Next
    
     
End Sub
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Maybe:
Rich (BB code):
Sub Sumif()
 
Dim SumRng1 As Range
Set SumRng1 = Sheets("Sheet1").Range("B:B")
 
Dim SumRng2 As Range
Set SumRng2 = Sheets("Sheet1").Range("E:E")
 
Dim SumRef1 As Range

 
Dim ws As Worksheet
Set ws = Sheets("Sheet2")
 
Dim i As Integer
 
 
For i = 5 To 8
    Set SumRef1 = Sheets("Sheet2").Range("B" & i)
    
     ws.Cells(i, 4) = Application.WorksheetFunction.Sumif(SumRng1, SumRef1, SumRng2)
    
    Next
    
     
End Sub
 
Upvote 0
You are welcome - thanks for the reply.
 
Upvote 0

Forum statistics

Threads
1,215,391
Messages
6,124,674
Members
449,179
Latest member
fcarfagna

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