+ Reply to Thread
Results 1 to 11 of 11

Foolproof Advance Filter criteria - blank cells

Hybrid View

Seler Naciowy Foolproof Advance Filter... 12-01-2008, 08:26 AM
arthurbr Hi, if you use the... 12-01-2008, 08:47 AM
Seler Naciowy Hi arthurbr, Yes, it does... 12-01-2008, 08:50 AM
Seler Naciowy davesexcel - Obvious reason -... 12-01-2008, 08:54 AM
davesexcel Why not use the Auto Filter... 12-01-2008, 08:49 AM
arthurbr Well it doesn't seem to ;-) 12-01-2008, 08:56 AM
Seler Naciowy You can't imagine how... 12-01-2008, 09:05 AM
royUK This will hide all rows that... 12-01-2008, 09:15 AM
Seler Naciowy Hi Roy, I have no problem... 12-01-2008, 09:45 AM
Seler Naciowy Hi Guys, Just so you know... 12-01-2008, 11:24 AM
arthurbr Seler, could you post a small... 12-01-2008, 09:10 AM
  1. #1
    Registered User
    Join Date
    11-27-2008
    Location
    Everywhere
    Posts
    11
    Well it doesn't seem to ;-)
    You can't imagine how Delighted I am that it doesn't :> Just the fact I have to deal with it makes me feel nauseous....

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    This will hide all rows that have blank cells in C or D

    Dim rng As Range
    
    Set rng = Range(Cells(2, 3), Cells(Rows.Count, _
        4).End(xlUp)).SpecialCells(xlCellTypeBlanks)
    rng.EntireRow.Hidden = True
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  3. #3
    Registered User
    Join Date
    11-27-2008
    Location
    Everywhere
    Posts
    11
    Hi Roy,

    I have no problem with Hiding the data, I have a problem with extracting data to another sheet based on criteria of the filter. Hiding it doesn't make much of a difference, you know.

    Hi arthurbr,

    I wouldn't feel entirely comfortable posting the data for the whole world wide web to see - while it's not strictly confidential, it is rather sensitive. Would it be ok with you if I sent it to you via email?

    Cheers,
    Seler

  4. #4
    Registered User
    Join Date
    11-27-2008
    Location
    Everywhere
    Posts
    11
    Hi Guys,

    Just so you know - I managed to resolve it by adding following piece of code into the macro:

    Columns("B:C").Select
    Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
    This searches for all empty cells in colums B and C of the data in the filter results and deletes entire row if an empty cell is found.

    a bit of an overkill, but works...

    Cheers,
    Seler

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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