Autofill Macro Needed

Graham Hill

New Member
Joined
Apr 11, 2002
Messages
2
I have several rows of text which look as follows:

LONDON
eng
eng

GLASGOW
sco
sco

I need a macro to autofill from the top row and then skip the missing cell to autofill the next block. This list is about 5000 rows so the macro will have to always find the next block and fill it until there is no more data.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Hi Graham

Would this do the trick??

Assuming the Column in question is Column A and data starts in A1 and the first data item is something we would want to copy down...

Sub test()

Lastrow = Range("A65536").End(xlUp).Row

Range("A1").Select

Do While ActiveCell.Row < Lastrow + 1

If ActiveCell.Value <> "" And ActiveCell.Offset(1, 0).Value <> "" Then
Selection.Copy
ActiveCell.Offset(1, 0).Select
ActiveSheet.Paste
Else
ActiveCell.Offset(1, 0).Select
End If
Loop

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,241
Members
449,075
Latest member
staticfluids

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