السلام عليكم
اخي فضل جرب هذا الكود
ستقوم باختيار المادة التي تريد عمل فرز لها ثم تضغط الزر وسيتم ان شاء الله الترتيب في الورقتين
Sub Abu_Ahmed_Srt()
On Error Resume Next
Application.ScreenUpdating = False
x = Selection.Column
For i = 1 To 2
Sheets(i).Select
Range(Cells(2, x), Cells(11, x)).Sort Key1:=Cells(2, x), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Next
ورقة1.Select
End Sub