Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 747
Default Find all Sheets !

Hi,

I have 3 sheets in a workbook.
All are names.....

I need macro to find in all sheets.

Is this possible ?

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 276
Default Find all Sheets !

Put a Combobox on the Sheet and use:


Option Explicit

Private Sub ComboBox1_Change()
Application.ScreenUpdating = False
Dim wks As Worksheet
For Each wks In ThisWorkbook.Worksheets
wks.Protect Password:=""
'wks.EnableSelection = xlUnlockedCells
Next wks
Application.ScreenUpdating = True
End Sub
Private Sub ComboBox1_Click()
If Len(ComboBox1.Value) Then
Worksheets(ComboBox1.Value).Activate
End If
End Sub
Private Sub ComboBox1_DropButtonClick()
Dim Sh As Worksheet
With ComboBox1
.Clear
For Each Sh In ActiveWorkbook.Sheets
If Sh.Name < "Inputs" Then
.AddItem Sh.Name
End If
Next
End With
End Sub



"muddan madhu" wrote in message
...
Hi,

I have 3 sheets in a workbook.
All are names.....

I need macro to find in all sheets.

Is this possible ?

Thanks



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
Please help me find veryhidden sheets J.W. Aldridge Excel Programming 1 September 26th 07 03:25 PM
Find what sheets are linked together fullers Excel Programming 2 March 9th 06 11:01 AM
Find and Several Sheets John Excel Programming 1 August 3rd 05 10:17 PM
how do i find which sheets contain links? dov Excel Worksheet Functions 2 April 12th 05 12:55 AM
find 10 max values in different sheets bandy2000 Excel Programming 3 April 1st 05 02:39 AM


All times are GMT +1. The time now is 06:05 AM.

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

About Us

"It's about Microsoft Excel"