Results 1 to 3 of 3

Run macro on all sheets except 1

Threaded View

  1. #1
    Forum Expert sourabhg98's Avatar
    Join Date
    10-22-2014
    Location
    New Delhi, India
    MS-Off Ver
    Excel 2007, 2013
    Posts
    1,899

    Run macro on all sheets except 1

    Hello everyone
    I want to run macro Hide rows if the workbook name is not 1 i.e. to run the macro on all sheets except the sheet names "1"
    For this I am doing this--
    But this is running on The sheet named as "1" too....
    Can someone please Help....

    Sub Apply_to_all_sheets()
           
    Dim ws As Worksheet
    For Each ws In ThisWorkbook.Worksheets
       With ws
          If .Name <> "1" Then
            Call HideRows
                 End If
       End With
    Next ws
    End Sub
    Sub HideRows()
        Dim cell As Range
        For Each cell In Range("BA3:BA22")
            If Not IsEmpty(cell) Then
                If cell.Value = 1 Then
                    cell.EntireRow.Hidden = True
                End If
            End If
        Next
    End Sub
    Attached Files Attached Files
    Last edited by sourabhg98; 01-21-2015 at 10:10 AM.

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