It normally opens due to an error or a false stop,
Is there a line coloured yellow when it opens?
can you post the code?
Sub Macro1()
'
' Macro1 Macro
'
'
Application.Goto Reference:="Macro1"
Range("B70:H91").Select
ActiveWorkbook.Worksheets("Trades").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("Trades").Sort.SortFields.Add Key:=Range("E71:E91") _
, SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:=xlSortNormal
With ActiveWorkbook.Worksheets("Trades").Sort
.SetRange Range("B70:H91")
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
End Sub