Hello,
I need some help to finish up a macro. The current macro I am using is,
which gets me to this point,
I need to fill column "C" with EOREOR down to match last data in column "A",
Thank you
JR
I need some help to finish up a macro. The current macro I am using is,
Code:
Sub changeheaders()
With Sheet1
Columns("B:D").Select
Selection.Delete Shift:=xlToLeft
.Cells(1, 1).Value = "v_products_model"
.Cells(1, 2).Value = "v_products_quantity"
.Cells(1, 3).Value = "EOREOR"
End With
End Sub
I need to fill column "C" with EOREOR down to match last data in column "A",
Thank you
JR