Hello,

I have several series of 13 figures (from 0 to 20), such as :

0 0 0 14 18 3 3 0 0 0 0 0 1

I would like to filter those series with the following condition :

Each figure (except the zeros) should be higher or equal to the first figure (found on the right) which is not a zero.
In the example :

14 should be higher or equal to 18 : FALSE
8 should be higher or equal to 3 : TRUE
3 should be higher or equal to 3 : TRUE
3 should be higher or equal to 1 : TRUE

So, the serie is FALSE, due to the fact that 14 is not higher than 18.

Thanks in advance for your kind help.
Best.