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 » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

HOW TO FIND THE MEREGED CELL



 
 
Thread Tools Display Modes
  #1  
Old February 10th, 2010, 09:36 AM posted to microsoft.public.excel.newusers
Sudhakar A.R
external usenet poster
 
Posts: 1
Default HOW TO FIND THE MEREGED CELL

when i sort the serial no excel shows Some merged cell is idintifed how find that hiden mered cell?


Submitted via EggHeadCafe - Software Developer Portal of Choice
Sending SMTP email from within BizTalk Orchestration
http://www.eggheadcafe.com/tutorials...il-from-w.aspx
  #2  
Old February 10th, 2010, 01:36 PM posted to microsoft.public.excel.newusers
Don Guillett[_2_]
external usenet poster
 
Posts: 607
Default HOW TO FIND THE MEREGED CELL

Please do NOT use all caps in subject or body of posting

Option Explicit
Sub findmergedcells()
Dim c As Range
For Each c In Selection
If c.MergeCells Then
c.Select
MsgBox "here it is"
Exit For
End If
Next c
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Sudhakar A.R" wrote in message ...
when i sort the serial no excel shows Some merged cell is idintifed how
find that hiden mered cell?


Submitted via EggHeadCafe - Software Developer Portal of Choice
Sending SMTP email from within BizTalk Orchestration
http://www.eggheadcafe.com/tutorials...il-from-w.aspx

  #3  
Old February 10th, 2010, 02:15 PM posted to microsoft.public.excel.newusers
Gary''s Student
external usenet poster
 
Posts: 7,584
Default HOW TO FIND THE MEREGED CELL

Try this macro:

Sub findmerge()
For Each r In ActiveSheet.UsedRange
If r.MergeCells = True Then
MsgBox r.Address
End If
Next
End Sub


--
Gary''s Student - gsnu201001


"Sudhakar A.R" wrote:

when i sort the serial no excel shows Some merged cell is idintifed how find that hiden mered cell?


Submitted via EggHeadCafe - Software Developer Portal of Choice
Sending SMTP email from within BizTalk Orchestration
http://www.eggheadcafe.com/tutorials...il-from-w.aspx
.

  #4  
Old February 22nd, 2010, 01:31 AM posted to microsoft.public.excel.newusers
SVanDee
external usenet poster
 
Posts: 7
Default HOW TO FIND THE MEREGED CELL

In Excel 2007, the normal Find command/dialog can search for cell formats;
e.g., merged cells. I just upgraded from Office97 to Office2007. I don't
believe there was an option to search for cell formats in Office97. I don't
know when it was added. This may not work if you have an older version than
Excel2007 but it's worth checking since it's such a useful capability to know
about:

- Type Ctrl/F to bring up the Find and Replace dialog box
or Find&Select | Find ... on the Home tab Ribbon in Excel 2007
or Edit | Find... in older versions of Excel
- Leave the Find What box empty
- Click the Format button at the far right of the top row of widgets
(If this button isn't there, I guess your version of Excel can't search for
formats.)
A drop-down list will appear
- Click Format ...
A Find Format dialog box will appear
- Click Alignment tab
- Click Merge cells until a green check mark appears in the box
- Click OK
The Find Format dialog box disappears
- Back in the find and Replace dialog box,
Click Find Next
Excel will move the active cell to the first merged cell on the sheet.
You can use Find All and/or Find Next to look for any others.

Cool. I didn't like Excel 2007 much for quite awhile. Thought seriously
about dropping back to 97. But it's growing on me.

"Sudhakar A.R" wrote:

when i sort the serial no excel shows Some merged cell is idintifed how find that hiden mered cell?


Submitted via EggHeadCafe - Software Developer Portal of Choice
Sending SMTP email from within BizTalk Orchestration
http://www.eggheadcafe.com/tutorials...il-from-w.aspx
.

 




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 12:51 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.