View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JMB JMB is offline
external usenet poster
 
Posts: 2,062
Default find a specific cell from the entire worksheet

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.




"Cindy" wrote:

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!