I have a macro I run to sort data.
Can someone help me complete the code to have this run everytime I open the file that this macro is in?
[vba]
Sub sortB()
'
' sort Macro
' Macro recorded 29/12/2005 by Tayler Reid
'
'
Range("B7:BG106").Select
Selection.sort Key1:=Range("B7"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Range("B7").Select
End Sub
[/vba]