Forum Discussion

Chandrakanth K's avatar
Chandrakanth K
Copper Contributor
Dec 27, 2018
Solved

How to paste till last row using Macro

Hello Team,   I have two columns "System" and "CC". I need to past dolphin after the last row till i have values in "CC". How do i code this. when i record i am getting a range but range always ch...
  • JWR1138's avatar
    Dec 27, 2018

     

    How about the below?     Cells(Rows.Count, 2).End(xlUp).Row     finds the last used row in Column 2. 

     

     

    Sub FillDolphin()

    Dim lRow As Long

    lRow = Cells(Rows.Count, 2).End(xlUp).Row

    Range("A4:A" & lRow).Formula = "Dolphin"

    End Sub

     

Resources