Results 1 to 1 of 1

HIde rows based on SpecialCells(xlCellTypeVisible) in row above with autofilter on

Threaded View

  1. #1
    Registered User
    Join Date
    02-16-2010
    Location
    melbourne
    MS-Off Ver
    Excel 2003
    Posts
    1

    HIde rows based on SpecialCells(xlCellTypeVisible) in row above with autofilter on

    Hi,

    I have a sheet diplays results for KPI's and different sections are seperated by a row. This row provides an aesthetic seperation of the data and also is the row the the contents of merged cells in row A live, so I can't delete them or the contents of these cells disapear.
    I will call this row the "seperator row"

    I have some code that filters the table to all the KPI's that are not on track to be completed based on the value of cells in column"L".

    The problem I am having is that due to the "seperator row" being requried to still be visible once I apply the filter I end up with multiple "seperator rows" visble one after the other for sections that do not have any not on track KPI's to display.

    I am trying to apply some code that will hide the duplicate seperator rows on top of each other so that only 1 x row is left to sperate the different visible KPI sections. Each seperator row has an "A" in the cell in column "L".

    I have tried to use with offset -1 and SpecialCells(xlCellTypeVisible) to reference the value of the row. But can;t get it to work.


    What I want the code to dow is.

    If the visible cell in the row above = "A" and the cell referecnce cell in row = "A" then hide the reference row. leaveing onnly the row above the reference cell visible.

    This is the code I have tried
      For i = 16 To 434
                Select Case .Range("L" & i).SpecialCells(xlCellTypeVisible).Offset(-1, 0).Value
                    Case Is = "A"
                        .Range("L" & i).EntireRow.Hidden = True
                    
                    Case Is <> "A"
                        Exit Sub
                End Select
                
            Next i
            
        End With

    Any ideas on how to get this to work

    Thanks
    Last edited by Leith Ross; 07-22-2010 at 07:59 PM. Reason: Added Code Tags

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