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

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
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,216,529
Messages
6,131,197
Members
449,634
Latest member
sunilj56

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