Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Worksheet Functions / November 2006

Tip: Looking for answers? Try searching our database.

find a specific cell from the entire worksheet

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Cindy - 15 Nov 2006 05:16 GMT
hi
there are more than 80worksheets and i need to know which sheets have a
blank cell  for C6 from the entire worksheet.
any help would be appreciated!
JMB - 15 Nov 2006 05:55 GMT
You could use a macro to do that:

Sub Test()
Dim wksTemp As Worksheet
For Each wksTemp In Worksheets
 If wksTemp.Range("C6").Value = "" Then _
  MsgBox wksTemp.Name
Next wksTemp
End Sub

Or, if by some unlikely chance your sheets were named Sheet1, Sheet2,
Sheet3, etc.  you could use

=INDIRECT("Sheet"&ROW()&"!C6")=""
in the first row of a worksheet and copy down to row 80.

> hi
> there are more than 80worksheets and i need to know which sheets have a
> blank cell  for C6 from the entire worksheet.
> any help would be appreciated!
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.