Autofill Formula Across Sheet to Final Column

KungFu Keyboard

New Member
Joined
Oct 22, 2016
Messages
26
Hi there,

I am creating a macro that requires a formula to be auto-filled across the spreadsheet to the last column with data in it. The number of columns varies. I have tried the following:

Dim LastColumn As Long

Range("Q3").Select
ActiveCell.FormulaR1C1 = "=IFERROR(SEARCH(R2C,RC4,1),0)"
LastColumn = Cells(3, Columns.Count).End(xlToLeft).Column
Range("Q3").AutoFill Destination:=Range(Range("Q3"), Cells(3, LastColumn)), Type:=xlFillFormats

Error message as follows: "runtime error 1004 autofill method of range class failed"

Regards,
Bernard
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
worked it out!

Dim LR As Long
Dim LC As Long

LR = Range("A" & Rows.Count).End(xlUp).Row
LC = Cells(1, Columns.Count).End(xlToLeft).Column
Range(Cells(3, 17), Cells(LR, LC)).FormulaR1C1 = "=IFERROR(SEARCH(R2C,RC4,1),0)"

Thanks,
 
Upvote 0

Forum statistics

Threads
1,223,099
Messages
6,170,107
Members
452,302
Latest member
TaMere

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