+ Reply to Thread
Results 1 to 4 of 4

Select Spacific sheets...

Hybrid View

  1. #1
    Registered User
    Join Date
    06-30-2012
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    70

    Select Spacific sheets...

    Hi all,

    I have 3 sheets name as
    1. All Status Key Process Missing
    2. Open Status Key Process Mis_2
    3. Ops Description Blank_3
    and some times its ending name changes but there first word(All,open,Ops) not change,so i want to select these sheets using their first word like All,open,Ops. I tried the coding like
    Sheets("All*").select
    but it won't work


    Please help me out..
    thanks in advance.

  2. #2
    Forum Guru :) Sixthsense :)'s Avatar
    Join Date
    01-01-2012
    Location
    India>Tamilnadu>Chennai
    MS-Off Ver
    2003 To 2010
    Posts
    12,788

    Re: Select Spacific sheets...

    Try it in this way...

    Sub SelectSpecificSheets()
    Dim s1 As String, s2 As String, s3 As String, Ws As Worksheet, sTemp As String
    
    For Each Ws In ThisWorkbook.Sheets
        sTemp = UCase(Ws.Name)
        If sTemp Like "ALL*" Then s1 = sTemp
        If sTemp Like "OPEN*" Then s2 = sTemp
        If sTemp Like "OPS*" Then s3 = sTemp
    Next Ws
    
    If s1 <> "" Then ThisWorkbook.Sheets(s1).Select
    If s2 <> "" Then ThisWorkbook.Sheets(s2).Select
    If s3 <> "" Then ThisWorkbook.Sheets(s3).Select
    
    End Sub
    Last edited by :) Sixthsense :); 05-09-2014 at 05:14 AM.


    If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
    Mark your thread as Solved


    If the suggestion helps you, then Click *below to Add Reputation

  3. #3
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Select Spacific sheets...

    Sub a()
    Dim arr(2)
    For Each sh In Sheets
      If InStr("AllOpeOps", Left(sh.Name, 3)) > 0 Then
        arr(i) = sh.Name
        i = i + 1
      End If
    Next
    Sheets(arr).Select
    End Sub
    If solved remember to mark Thread as solved

  4. #4
    Registered User
    Join Date
    06-30-2012
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    70

    Re: Select Spacific sheets...

    Thank both,

    Both coding works perfectly ....



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Adding Spacific Date Range
    By rmorganpier45 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-19-2014, 09:45 PM
  2. Using Index and Match to get spacific information
    By komet12 in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 02-05-2014, 10:01 AM
  3. Parcing spacific data from a cell
    By oneyejack in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 05-14-2007, 11:17 PM
  4. how do i get a pop up with reminders of things to do at spacific .
    By abc answering service in forum Excel General
    Replies: 2
    Last Post: 12-27-2005, 01:35 PM
  5. Help with VBA code, making it spacific to one workbook
    By polska2180 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-27-2005, 02:47 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1