Aparentemente, você não pode fazer isso no excel usando a instrução if simples. Você precisa fazer isso no VBA:
Public Sub StergeSTorOR()
Dim oRow As Range
Dim cell As Range
Dim i As Long, j As Long
Application.ScreenUpdating = False
For i = Selection(Selection.Count).Row To Selection.Cells(1, 1).Row Step -1
For j = Selection(Selection.Count).Column To Selection.Cells(1, 1).Column Step -1
If Cells(i, j).Value = "AB:" Or Cells(i, j).Value = "CD:" Then
Cells(i, j + 1).Value = Cells(i, j).Value & Cells(i, j + 1).Value
Cells(i, j).Delete shift:=xlShiftToLeft
End If
Next j
Next i
Application.ScreenUpdating = True
End Sub