Thanks Chip! That was wonderful.
In the meantime I came along another post that didn't come up in previous
searches do to UK spelling of "colour". I also liked a solution provided by
Pete_UK. The neat thing about his function is that the conditional formatting
does not get applied unless their is data in the row.
Here's his function if it is of any use:
==============================
I used a slightly different formula in your step 3:
=AND(MOD(SUBTOTAL(3,$A2:$A$2),2)=0,$A2<>"")
so that the conditional formatting is not affected by blanks in column
A. The banding shows when you have data in column A, alternately white
and yellow - empty cells are always white, so you can have areas of
white with a block of empty cells. When you apply the filter you get
alternate rows coloured. The effect is more noticeable if you set up a
second condition (with say a green background) with a formula like:
=AND(MOD(SUBTOTAL(3,$A2:$A$2),2)=1,$A2<>"")
Maybe you would like to look into this effect.
Hope this helps.
Pete
==============================
Thanks again!