+ Reply to Thread
Results 1 to 18 of 18

I have 4 questions, van you help?

Hybrid View

  1. #1
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Hi,

    This might help with 2 out of 4

    Should select the first sheet and unfilter ranges

    Sub 2_out_of_4
        On Error Resume Next
        Dim sht As Worksheet
        For Each sht In ActiveWorkbook.Worksheets
        ActiveSheet.ShowAllData
        Next sht
        Sheets(1).Select    
    End Sub
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  2. #2
    Forum Contributor
    Join Date
    10-30-2006
    MS-Off Ver
    O365
    Posts
    311
    what sheet should i put this code in? the front page?

    Sub 2_out_of_4
    On Error Resume Next
    Dim sht As Worksheet
    For Each sht In ActiveWorkbook.Worksheets
    ActiveSheet.ShowAllData
    Next sht
    Sheets(1).Select
    End Sub

  3. #3
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Hi,

    Sorry should be

    Private Sub Workbook_Open()
     On Error Resume Next
        Dim sht As Worksheet
        Application.ScreenUpdating = False
        For Each sht In ActiveWorkbook.Worksheets
        ActiveSheet.ShowAllData
        Next sht
        Sheets(1).Select
        Application.ScreenUpdating = True
    End Sub
    See link which shows how to get to thisworkbook

    http://www.mcgimpsey.com/excel/modules.html

    VBA Noob

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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