Hello,
Can anyone help me streamline this code? I want to avoid "Selecting" and "Activating" as much as possible because this block of code will be repeated several times with different columns. Thanks so much.
Can anyone help me streamline this code? I want to avoid "Selecting" and "Activating" as much as possible because this block of code will be repeated several times with different columns. Thanks so much.
HTML:
Sheets("Rate Comparison").Activate
Range("A6").AutoFilter
Range("A6").AutoFilter Field:=26, _
Criteria1:="=New"
Range("A7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
Windows("Rate Comparison Macro1").Activate
Sheets("Proposed Ranking").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
Range("C" & FinalRow + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False