Macro: Auto Fill down on Col A & B base on cell

harky

Active Member
Joined
Apr 8, 2010
Messages
405
Office Version
  1. 2021
  2. 2019
Platform
  1. Windows
The pic1 show original, and the marco will auto fill down as show in pic2 (yellow)


1BepwE6.jpg




jvwvJKM.jpg
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Try this:
Code:
Sub Fill_Down()
'Modified 8/22/2019 12:30:48 AM  EDT
Application.ScreenUpdating = False
Dim i As Long
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 4 To Lastrow
    If Cells(i, 1).Value = "" Then Cells(i, 1).Value = Cells(i, 1).Offset(-1).Value
    If Cells(i, 2).Value = "" Then Cells(i, 2).Value = Cells(i, 2).Offset(-1).Value
Next
Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0
Another option.

Code:
Sub FillDown()
With Range("A4:B" & Range("C" & Rows.Count).End(xlUp).Row).SpecialCells(xlCellTypeBlanks)
    For Each a In .Areas
        a.FormulaR1C1 = "=R[-1]C"
        a.Value = a.Value
    Next a
End With
End Sub
 
Upvote 0
Thanks you so much!

Try this:
Code:
Sub Fill_Down()
'Modified 8/22/2019 12:30:48 AM  EDT
Application.ScreenUpdating = False
Dim i As Long
Dim Lastrow As Long
Lastrow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 4 To Lastrow
    If Cells(i, 1).Value = "" Then Cells(i, 1).Value = Cells(i, 1).Offset(-1).Value
    If Cells(i, 2).Value = "" Then Cells(i, 2).Value = Cells(i, 2).Offset(-1).Value
Next
Application.ScreenUpdating = True
End Sub

Thanks you so much!

Another option.

Code:
Sub FillDown()
With Range("A4:B" & Range("C" & Rows.Count).End(xlUp).Row).SpecialCells(xlCellTypeBlanks)
    For Each a In .Areas
        a.FormulaR1C1 = "=R[-1]C"
        a.Value = a.Value
    Next a
End With
End Sub

Thanks you so much!

 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,780
Members
449,049
Latest member
greyangel23

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