I named your three tables "One", "Two" and "Three" and then put this in the sheet module - seems to work. Right-click on the sheet tab, view code and paste in.
Private Sub Worksheet_Calculate()
Application.EnableEvents = False
Range("One").Sort Key1:=Range("One")(1, 3), Order1:=xlDescending, Header:=xlNo
Range("Two").Sort Key1:=Range("Two")(1, 3), Order1:=xlDescending, Header:=xlNo
Range("Three").Sort Key1:=Range("Three")(1, 3), Order1:=xlDescending, Header:=xlNo
Application.EnableEvents = True
End Sub
Bookmarks