M
McG
I have a set of results which are collected into a table B3:AB23.
The data is then sorted by the following macro below.
I would like the table to be automatically sorted without me having to
use the Keyboard Shortcut: Ctrl+y 30-50 times a day.
Can this be done?
Sub League()
'
'
' Keyboard Shortcut: Ctrl+y
'
Range("B3:AB23").Select
Selection.Sort Key1:=Range("C4"), Order1:=xlDescending,
Key2:=Range("J4") _
, Order2:=xlDescending, Key3:=Range("H4"),
Order3:=xlDescending, Header _
:=xlGuess, OrderCustom:=1, MatchCase:=False,
Orientation:=xlTopToBottom
End Sub
The data is then sorted by the following macro below.
I would like the table to be automatically sorted without me having to
use the Keyboard Shortcut: Ctrl+y 30-50 times a day.
Can this be done?
Sub League()
'
'
' Keyboard Shortcut: Ctrl+y
'
Range("B3:AB23").Select
Selection.Sort Key1:=Range("C4"), Order1:=xlDescending,
Key2:=Range("J4") _
, Order2:=xlDescending, Key3:=Range("H4"),
Order3:=xlDescending, Header _
:=xlGuess, OrderCustom:=1, MatchCase:=False,
Orientation:=xlTopToBottom
End Sub