左辺の部分は
Cells(Rows.Count, "B").End(xlUp).Select
Cells(Cells(Rows.Count, "B").End(xlUp).Row, "J").Select
Range(Cells(2, "J"), Cells(Cells(Rows.Count, "B").End(xlUp).Row, "J")).Select
Cells(2, "J").Select
Cells(2, "J").Resize(2).Select
Cells(2, "J").Resize(Cells(Rows.Count, "B").End(xlUp).Row - 1).Select
辺りをステップ実行して、選択しているセル位置、セル範囲を確認してみてください。