A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Checking for merged cells



 
 
Thread Tools Display Modes
  #1  
Old April 20th, 2010, 11:29 AM posted to microsoft.public.excel.misc
dhstein
external usenet poster
 
Posts: 665
Default Checking for merged cells

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.
  #2  
Old April 20th, 2010, 11:34 AM posted to microsoft.public.excel.misc
Mike H
external usenet poster
 
Posts: 8,419
Default Checking for merged cells

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.


"dhstein" wrote:

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.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 10:14 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.