Sub testcode()
Dim e As Long
Application.ScreenUpdating = False
For e = 1 To Cells(4, Columns.Count).End(xlToLeft).Column
If InStr(Cells(4, e), "Sunday") > 0 Then
Columns(e).Delete
e = e - 1
End If
Next e
Application.ScreenUpdating = True
End Sub