Checking for merged cells

  • Thread starter Thread starter dhstein
  • Start date Start date
D

dhstein

Is there a way in VBA to loop through a range, check if any of the cells are
formatted as merged cells and if so, display a message? Thanks.
 
Hi,

Like this maybe

Sub MergedCells()
Dim c As Range
For Each c In ActiveSheet.UsedRange
If c.MergeCells Then
MsgBox c.Address & " is merged"
End If
Next
End Sub
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top