@justme1052: I'm afraid that the information, as presented, is not very helpful. What would be more useful is a sample workbook, or the actual workbook if it does not contain any sensitive information. The code should be in the workbook.
Please also note that, to comply with forum rules, you should also add Code Tags around your code above.
In the meantime:
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Range("AB160").Select ' redundant because superseded below
ActiveWindow.SmallScroll Down:=114 ' get rid of anything like this (with scroll in it)
Range("Y262:Z270").Select
ActiveWorkbook.Worksheets("Mor Setup").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("Mor Setup").Sort.SortFields.Add Key:=Range( _
"Z263:Z270"), SortOn:=xlSortOnValues, Order:=xlDescending, DataOption:= _
xlSortNormal
With ActiveWorkbook.Worksheets("Mor Setup").Sort
.SetRange Range("Y262:Z270")
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Range("AC273").Select
ActiveWindow.SmallScroll Down:=138 ' again, get rid of anything like this
End Sub
Regards, TMS
Bookmarks