![]() |
#3
|
|||
|
|||
![]()
ok so i searched other forum and came up with answer.
Below is the code attached to a command button, Sub FindCellContent() Dim Sh As Worksheet, foundCell As Range 'Search for CellContent in all Visible Worksheets For Each Sh In ActiveWorkbook.Worksheets If Sh.Visible = xlSheetVisible Then 'If you want to ignore the active sheet unmark the below line 'If ActiveSheet.Name <> Sh.Name Then Set foundCell = Sh.Cells.Find(What:=ActiveCell, _ After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, _ SearchOrder:=xlByRows, SearchDirection:=xlNext) If Not foundCell Is Nothing Then If foundCell.Address(External:=True) <> _ ActiveCell.Address(External:=True) Then _ Application.Goto foundCell: Exit For End If '/If you want to ignore the active sheet 'End If End If Next If foundCell Is Nothing Then _ MsgBox ActiveCell & " not found in this workbook" End Sub |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
kenelder | PowerPoint | 2 | 04-16-2014 06:52 AM |
![]() |
Iluvsodah | PowerPoint | 1 | 02-21-2013 05:14 PM |
![]() |
Jen L | Word | 3 | 03-29-2012 11:32 AM |
Mouse over or click highlighting | SavageMind | PowerPoint | 1 | 03-19-2012 01:58 PM |
Mouse double click problem in part protected sheets | rene01 | Excel | 0 | 08-25-2010 07:33 AM |