Copying a range of formulas and pasting it into a variable of ranges

jpj31

New Member
Joined
Apr 26, 2022
Messages
14
Office Version
  1. 2016
Platform
  1. Windows
I've cobbled together the following code:
Sub Paste_Formulas()
'
' Paste_Formulas Macro
Dim totalrow As Long
Dim lc As Range

With ActiveSheet

Set lc = [P:P].Find(What:="Total", After:=[P19], LookIn:=xlFormulas, LookAt:=xlWhole, SearchDirection:=xlPrevious)
If Not lc Is Nothing Then totalrow = lc.Row
Range("N16:IL16").AutoFill Destination:=Range("N19:N" & totalrow), Type:=xlFillDefault
End With

'
End Sub

The totalrow will vary based on how many rows get inserted. In column P there is a "Total". I want the macro to copy the formulas from N16:IL16 and paste them into every row that has data, starting on row 19 down to just above the Total row. I know my current formula shows the totalrow as the final row, but one problem at a time... What's highlighted in yellow is what excel is showing as the issue. I'm stumped on what's causing it.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number

Forum statistics

Threads
1,214,947
Messages
6,122,411
Members
449,081
Latest member
JAMES KECULAH

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