Range("A1:D1").Select
With Selection
.MergeCells = True
End With
Range("A1").Select
With Selection
'.MergeCells = False <--- Error Object Required
.UnMerge 'Correct
End With
I prefer understanding odd things like this. It strikes me as a contradiction that a property can be set as True, but not False.