Does anyone have any idea whats going wrong here? Have I got the syntax wrong somewhere?
Code:
Sheets("Data").Columns("E:E").AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Range("FA1"), Unique:=True
Columns("FA1:FA").Select
Selection.Sort Key1:=Range("FA:FA)
Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Application.Goto Reference:="R1C1"
End Sub