Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is it possible to create a find, by macro, to find ALL sheets with a
Cell(A3) value that matches a Msg Box value? There could be 100 sheets. Corey.... |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Corey,
Have a go with the code below. Best regards John Sub FindInAllSheets() Dim wks As Worksheet For Each wks In Application.ActiveWorkbook If wks.Cells(3, 1).Value = "MySearch" Then MsgBox ("Found") End If Next wks End Sub "Corey" wrote in message ... Is it possible to create a find, by macro, to find ALL sheets with a Cell(A3) value that matches a Msg Box value? There could be 100 sheets. Corey.... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro to find cell content in sheets and make sheet active | Excel Discussion (Misc queries) | |||
Find value in a Range of Cells and perform Conditional Formatting | Excel Worksheet Functions | |||
perform calculations in 2 sheets | Excel Worksheet Functions | |||
How to perform "ifcount" in many sheets | Setting up and Configuration of Excel | |||
Compare two sheets and perform action routine | Excel Programming |