Aaaha - okOriginally Posted by chris_mayer
You can cycle through the range of cells and test if each is a part of a Merge, as per the help on 'Merged' -
Set ma = Range("a3").MergeArea
If Range("a3").MergeCells Then
ma.Cells(1, 1).Value = "42"
End If
but you would need a serious reason to do that.
---
Bookmarks