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

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
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,215,528
Messages
6,125,342
Members
449,218
Latest member
Excel Master

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