Forum Discussion

Alexis1101's avatar
Alexis1101
Copper Contributor
Aug 10, 2022
Solved

VBA to paste value in cell A14 to all below rows in column A

Hello,   I have a spreadsheet with over 100 sheets. I need the value in Cell A14 of each sheet to be pasted to all rows in column A thru the end of the sheet. For example, I need Cell A14 (#A) to g...
  • HansVogelaar's avatar
    HansVogelaar
    Aug 10, 2022

    Alexis1101 

    New version:

    Sub CopyDownA()
        Dim LastRow As Long
        LastRow = Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
        Range("A15:A" & LastRow).Value = Range("A14").Value
    End Sub

Resources