+ Reply to Thread
Results 1 to 25 of 25

Hide/unhide rows with zero values

Hybrid View

  1. #1
    Registered User
    Join Date
    04-11-2007
    Posts
    49

    Hide/unhide rows with zero values

    Need a macro which will hide rows having 0 values. On running once it will hide those rows having 0 values and on pressing second time it will unhide those hidden rows and so on.
    Thanks for any reply.

  2. #2
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    What column(s) are you checking for the 0 values?


    rylo

  3. #3
    Registered User
    Join Date
    04-11-2007
    Posts
    49
    i need the same for column C , D, and E

  4. #4
    Forum Expert
    Join Date
    01-15-2007
    Location
    Brisbane, Australia
    MS-Off Ver
    2007
    Posts
    6,591
    Hi

    try

    sub xxx
      for i = cells(rows.count,1).end(xlup).row to 1 step -1
      if cells(i,3) = 0 or cells(i,4) = 0 or cells(i,5) = 0 then
       cells(i,1).entirerow.delete
      end if
      next i
    end sub

    rylo

  5. #5
    Registered User
    Join Date
    04-11-2007
    Posts
    49
    Thanks for the code But i want to hide the rows and not to delete the rows. As I'll assign the macro to a button, so I want that on cliking once the rows with zero values will hide and on second click it will unhide all rows, on third click again hide zero value rows and on 4th click, unhide all rows and so on. Could the code be modified in this manner? thanks

  6. #6
    Forum Contributor
    Join Date
    01-10-2006
    Location
    Ahmedabad, India
    MS-Off Ver
    Office 2000
    Posts
    346
    Quote Originally Posted by sujittalukder
    Thanks for the code But i want to hide the rows and not to delete the rows. As I'll assign the macro to a button, so I want that on cliking once the rows with zero values will hide and on second click it will unhide all rows, on third click again hide zero value rows and on 4th click, unhide all rows and so on. Could the code be modified in this manner? thanks
    Private Sub CommandButton1_Click()
    Static flag As Boolean
    If flag Then
    For i = Cells(Rows.Count, 1).End(xlUp).Row To 1 Step -1
      If Cells(i, 3) = 0 Or Cells(i, 4) = 0 Or Cells(i, 5) = 0 Then
       Cells(i, 1).EntireRow.Hidden = True
      End If
      Next
    Else
    ActiveSheet.Rows.Hidden = False
    End If
    flag = Not flag
    End Sub
    While unhiding it will unhide all the rows on the sheet and not only those were hidden by the macro

    A V Veerkar

+ 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