+ Reply to Thread
Results 1 to 6 of 6

Row visible by filter

Hybrid View

  1. #1
    Registered User
    Join Date
    10-24-2003
    Location
    Netherlands
    MS-Off Ver
    365
    Posts
    33

    Row visible by filter

    I would like to make a boolean on every row in a list that tells me if that row is hidden by a filter or not.
    (Want to use that for several sumproduct formula's)

    Can that be done a formula or would I need VBA?

    Thanks for your help.
    Arien

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    16,040

    re: Row visible by filter

    How you see it with boolean if it's hidden?
    Never use Merged Cells in Excel

  3. #3
    Registered User
    Join Date
    10-24-2003
    Location
    Netherlands
    MS-Off Ver
    365
    Posts
    33

    re: Row visible by filter

    I do not see it. But I can calculate with it...


    I tried something like
    Function is_hidden(this_cel) As Boolean
    is_hidden = this_cel.Hidden
    End Function
    But that that is just not correct.

    Thanks.
    Arien

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    re: Row visible by filter

    Try this:
    Function IsHidden() As Boolean
        Application.Volatile
        IsHidden = Application.Caller.EntireRow.Hidden
    End Function
    Example usage: =IF(IsHidden(), 1, 0)
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Registered User
    Join Date
    10-24-2003
    Location
    Netherlands
    MS-Off Ver
    365
    Posts
    33

    Re: Row visible by filter

    Thanks shg.
    Please allow me to practice with it as it seems to slow down my computer pretty much.
    Also I need to press F9 after entering the formula. Then it only calculates 1 cell, while the other cells change to #value

    regards,
    Arien

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Row visible by filter

    I don't understand the problem you're having. It should be entered as an ordinary formula in a cell. Post a workbook?

    The Application.Volatile causes the function to calculate when anything changes. It might be changed to reduce the impact.

+ 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