VBA - Using a named range in R1C1 reference

spencerp237

New Member
Joined
Feb 24, 2017
Messages
26
Code:
Dim lastRow As Integer
Dim ws1 As Worksheet

Set ws1 = Sheets("PayoutsTest")
lastRow = ws1.Cells(Rows.count, 1).End(xlUp).Row


'Sum Columns
With ws1.Range("B2")
    .FormulaR1C1 = "=SUM(R[1]C:R&lastRow&C)"
End With

Above is the relevant part of my code. The lastRow could be changing so I want to used a named range. Is there a way to insert that into a R1C1 reference like I tried doing above?

Thanks for any help.
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Do you want to use a named range or do you just want to incorporate lastRow into the code?

If it's the latter try this.
Code:
With ws1.Range("B2")
    .FormulaR1C1 = "=SUM(R[1]C:R" & lastRow &"C)"
End With
If it's the former can you explain further?
 
Upvote 0

Forum statistics

Threads
1,225,739
Messages
6,186,746
Members
453,370
Latest member
juliewar

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