+ Reply to Thread
Results 1 to 11 of 11

Hide Rows for First Set of Consecutive Blank Cells in Column

Hybrid View

  1. #1
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Hide Rows for First Set of Consecutive Blank Cells in Column

    Sub Hide_Blanks_Specific()
    Dim ws As Worksheet:    Set ws = Sheets("Sheet1")
    Dim b As Boolean:   b = False
    Dim sRow As Long, lRow As Long
    Dim c As Range
    
    For Each c In ws.Range("B1:B" & ws.Range("B" & Rows.Count).End(xlUp).Row)
        If b = False Then
            If Len(c) = 0 Then
                sRow = c.Row
                b = True
            End If
        ElseIf b = True Then
            If Not Len(c) = 0 Then
                lRow = c.Offset(-1).Row
                Exit For
            End If
        End If
    Next c
    
    ws.Range("A" & sRow, "A" & lRow).EntireRow.Hidden = True
    
    End Sub

  2. #2
    Registered User
    Join Date
    08-10-2012
    Location
    San Jose, California
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Hide Rows for First Set of Consecutive Blank Cells in Column

    Stnkynts,

    After I hide the rows, I have code to print the sheet and then loop for the next ticker to do the same. Is there a way to unhide what I just hid? I tried using ws.Range("A" & sRow, "A" & lRow).EntireRow.Hidden = False, but that didn't work.

    It gives me an error on this line:
    lRow = c.Offset(-1).Row

    Thanks again,
    Lisa
    Last edited by pastuslm; 04-22-2015 at 01:35 PM.

+ 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. Count number of consecutive non blank cells in a column macro excel
    By nasim12w in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-03-2015, 06:00 AM
  2. [SOLVED] Hide Rows if the cell in a certain column is blank or zero
    By Shannon561 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-16-2014, 07:00 AM
  3. [SOLVED] Find consecutive non blank cells in a column
    By desibabuji in forum Excel Programming / VBA / Macros
    Replies: 27
    Last Post: 11-08-2013, 12:50 PM
  4. [SOLVED] Hide any rows 5 through 16 in which column H is blank
    By Triscia in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-14-2013, 04:30 PM
  5. Replies: 4
    Last Post: 07-05-2012, 12:05 PM

Tags for this Thread

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