VBA Syntax For Dynamic Formula Statement For a Range of Cells

Ark68

Well-known Member
Joined
Mar 23, 2004
Messages
4,564
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hello,

I am struggling with the syntax of the following line in red ...

Rich (BB code):
With ws_srcdata
        src_lrow = .Cells(Rows.Count, 7).End(xlUp).Row
        src_rowcnt = src_lrow - 1
    
    
    'populate calculated columns
    
        For r = 2 To src_lrow
             'Z - Net Use Hours
            .Cells(r, 26).Formula = "= $Y$" & r & "$E$" & r"
        Next r
            
    End With
End Sub

I am trying to populate column Z from row 2 to the end of the database with dynamic formula equivalent to cells(r,"Z")=cells(r,"Y") + cells(r,"E")
 
Last edited:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
How about
Code:
Sub Ark68()
    With ws_srcdata
        .Range("Z2:Z" & .Range("G" & Rows.Count).End(xlUp).Row).FormulaR1C1 = "=rc[-1]+rc[-21]"
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,782
Messages
6,121,532
Members
449,037
Latest member
tmmotairi

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