هذا آخر اختصار للكود قمت بالتوصل اليه ويعمل جيدا لمن يريد الاضافه
Sub auto_filtr()
With ActiveWorkbook.Worksheets("ورقة1").ListObjects("الجدول1").Sort
.SortFields.Clear
.SortFields.Add Key:=Range("a1"), Order:=xlAscending
.Apply
End With
With ActiveWorkbook.Worksheets("ورقة1").ListObjects("الجدول2").Sort
.SortFields.Clear
.SortFields.Add Key:=Range("b1"), Order:=xlAscending
.Apply
End With
With ActiveWorkbook.Worksheets("ورقة1").ListObjects("الجدول3").Sort
.SortFields.Clear
.SortFields.Add Key:=Range("c1"), Order:=xlAscending
.Apply
End With
With ActiveWorkbook.Worksheets("ورقة1").ListObjects("الجدول4").Sort
.SortFields.Clear
.SortFields.Add Key:=Range("d1"), Order:=xlAscending
.Apply
End With
With ActiveWorkbook.Worksheets("ورقة1").ListObjects("الجدول5").Sort
.SortFields.Clear
.SortFields.Add Key:=Range("e1"), Order:=xlAscending
.Apply
End With
End Sub