Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
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   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1,522
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   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 11,058
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   Report Post  
Posted to microsoft.public.excel.newusers
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
.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Find & Replace: find part cell, replace whole cell katy Excel Worksheet Functions 3 April 3rd 23 01:20 PM
find last cell in range with data, display cell address sevi61 Excel Worksheet Functions 14 October 29th 07 08:36 PM
FIND / SEARCH text compare cell to string in 3rd cell nastech Excel Discussion (Misc queries) 0 October 29th 07 02:51 AM
Find First Non blank cell than find column header and return that value Silver Rose Excel Worksheet Functions 10 April 30th 07 05:56 PM
Change the appearance cell where Find criteria is found in a cell Tomszar Excel Discussion (Misc queries) 3 December 30th 05 02:48 PM


All times are GMT +1. The time now is 01:04 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"