Sub MySort()
' Replace all values of "Grand Final" in column with nothing
On Error Resume Next
Columns("A:A").Replace What:="Grand Final", Replacement:="", LookAt:=xlPart, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
On Error GoTo 0
' Sort by column A
Columns("A:A").Sort key1:=Range("A1"), order1:=xlAscending, Header:=xlNo
End Sub
I suspect that you are wrong & that there are merged cells, hence the error message.There are no merged cells on the sheet.