Autofill formula issue

natetc

Board Regular
Joined
Oct 2, 2008
Messages
127
Hi,

I have a macro that runs autofill for certain columns, but I've run into a problem. When testing I've usually had more than one entry, however now if I have only one entry my code doesn't work. Can someone suggestion a solution? (In order to run for a single entry I removed the bolded line)

Dim LR As Long
LR = Cells.Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row
Columns("Y").Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("Y2").FormulaR1C1 = "=TEXT(RC[-1], ""00-00-0000"")+0"
Range("Y2").AutoFill Destination:=Range("Y2:Y" & LR)
Columns("Y").NumberFormat = "[$-409]mmmm d, yyyy;@"
Range("Y1").Value = "Date1"


LR = Cells.Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row
Columns("AA").Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
Range("AA2").FormulaR1C1 = "=DOLLAR(RC[-1],2)"
Range("AA2").AutoFill Destination:=Range("AA2:AA" & LR)
Range("AA1").Value = "EAP1"
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Maybe

Code:
If LR > 2 Then Range("Y2").AutoFill Destination:=Range("Y2:Y" & LR)
 
Upvote 0

Forum statistics

Threads
1,215,253
Messages
6,123,891
Members
449,131
Latest member
leobueno

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