I have a document with multiple filters that cause multiple rows to be hidden. The visible data looks similar to this:
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Column A [/TD]
[/TR]
[TR]
[TD]Row 1[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD]Row 3[/TD]
[TD]24[/TD]
[/TR]
[TR]
[TD]Row 4[/TD]
[TD]13[/TD]
[/TR]
[TR]
[TD]Row 5[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]Row 11[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]Row 13[/TD]
[TD]20[/TD]
[/TR]
</tbody>[/TABLE]
I am trying to create a conditional formatting to highlight the highest 3 numbers in column A. The problem I am having is that sometimes the highest numbers are in hidden rows, and these get highlighted instead. How do I make it so only the top 3 non-hidden numbers are highlighted? In the above example, A3, A5, and A13 should be highlighted even if the hidden rows have larger values.
[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]Column A [/TD]
[/TR]
[TR]
[TD]Row 1[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD]Row 3[/TD]
[TD]24[/TD]
[/TR]
[TR]
[TD]Row 4[/TD]
[TD]13[/TD]
[/TR]
[TR]
[TD]Row 5[/TD]
[TD]32[/TD]
[/TR]
[TR]
[TD]Row 11[/TD]
[TD]12[/TD]
[/TR]
[TR]
[TD]Row 13[/TD]
[TD]20[/TD]
[/TR]
</tbody>[/TABLE]
I am trying to create a conditional formatting to highlight the highest 3 numbers in column A. The problem I am having is that sometimes the highest numbers are in hidden rows, and these get highlighted instead. How do I make it so only the top 3 non-hidden numbers are highlighted? In the above example, A3, A5, and A13 should be highlighted even if the hidden rows have larger values.