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
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
How you see it with boolean if it's hidden?![]()
Never use Merged Cells in Excel
I do not see it. But I can calculate with it...
I tried something like
But that that is just not correct.![]()
Function is_hidden(this_cel) As Boolean is_hidden = this_cel.Hidden End Function
Thanks.
Arien
Try this:
Example usage: =IF(IsHidden(), 1, 0)![]()
Function IsHidden() As Boolean Application.Volatile IsHidden = Application.Caller.EntireRow.Hidden End Function
Entia non sunt multiplicanda sine necessitate
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
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.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks