Fill series but end and continue with macro if series ends at "1"

willow1985

Well-known Member
Joined
Jul 24, 2019
Messages
886
Office Version
  1. 365
Platform
  1. Windows
Hello,

I have a vba code that will fill a series from A11 down however if there is only 1 item (A11) I need something in my code that will recognize this and not give me an error but continue with my macro. What could I add to this line to have that happen?

ActiveCell.FormulaR1C1 = "1"
Range("A11").AutoFill Destination:=Range("A11:A" & Cells(Rows.Count, "B").End(xlUp).Row), Type:=xlFillSeries

Thank you

Carla
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Wrap it in an IF/THEN block:
Code:
[COLOR=#333333]ActiveCell.FormulaR1C1 = "1"[/COLOR]
If [COLOR=#333333]Cells(Rows.Count, "B").End(xlUp).Row > 11 Then
[/COLOR][COLOR=#333333]    Range("A11").AutoFill Destination:=Range("A11:A" & Cells(Rows.Count, "B").End(xlUp).Row), Type:=xlFillSeries
End If[/COLOR]
 
Upvote 0
You are welcome.
 
Upvote 0

Forum statistics

Threads
1,214,527
Messages
6,120,054
Members
448,940
Latest member
mdusw

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