Code:
Sub reva()
Dim LastRowColumnA As Long: LastRowColumnA = Sheets("Working Other Purchases").Cells(Rows.Count, 1).End(xlUp).Row
ActiveSheet.Range("A1:AV" & LastRowColumnA).AutoFilter Field:=12, Criteria1:="=*Rate*", Operator:=xlFilterValues
ActiveSheet.Range("A1:AV" & LastRowColumnA).AutoFilter Field:=10, Criteria1:="="
Range("J10000", Cells(Rows.Count, "J").End(xlUp).Offset(-1)).Select
ActiveCell.FormulaR1C1 = "Rate"
Selection.FillDown
End Sub
Hi guys, I am trying to filter 12th column *Rate* and filter 10th column with "=".
Then I am trying to fill up the 10th column's with "Rate".
Code above is what I tried to put rate in the 10th column, but xlup function does not work properly
does anyone has Idea abnout this?
Thank you!