'Checks for new carrier lane
Range("AA7").Select
ActiveCell.FormulaR1C1 = _
"=IF(COUNTIF('Current Ranking'!C[-25],'Rate Comparison'!RC[-15])>0,1,""NEW"")"
Range("AA7").AutoFill Destination:=Range("AA7:AA" & LR), Type:=xlFillDefault
Calculate
'Adds new lanes to proposed ranking sheet
'
'I want to skip this section if "NEW" doesn't exist.
'
Sheets("Rate Comparison").Activate
Range("A6").Select
Range("A6").AutoFilter
Range("A6").AutoFilter Field:=27, _
Criteria1:="=New"
Range("A7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
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
Sheets("Rate Comparison").Select
Range("C7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
Sheets("Proposed Ranking").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
Range("E" & FinalRow + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Rate Comparison").Select
Range("D7:J7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
Sheets("Proposed Ranking").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
Range("F" & FinalRow + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Rate Comparison").Select
Range("Q7:R7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
Sheets("Proposed Ranking").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
Range("Q" & FinalRow + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Rate Comparison").Select
Range("B7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
Sheets("Proposed Ranking").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
Range("O" & FinalRow + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Rate Comparison").Select
Range("K7:L7").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).copy
Sheets("Proposed Ranking").Select
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
Range("A" & FinalRow + 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Rate Comparison").Select
Range("A6").AutoFilter