Hello
Formula obtained from Missing Numbers From a Range
=SMALL(IF(COUNTIF($B$3:$D$5, ROW($1:$9))=0, ROW($1:$9), ""), ROWS(B8:$B$8))
How Can i use ISERROR in above syntax/Formula ?
I don't know whether the above link reference is misleading because when going through it I got confused when
i read the following
So Basically i wanted to avoid Error #NUM
Thanks
Rapchik
Formula obtained from Missing Numbers From a Range
=SMALL(IF(COUNTIF($B$3:$D$5, ROW($1:$9))=0, ROW($1:$9), ""), ROWS(B8:$B$8))
How Can i use ISERROR in above syntax/Formula ?
I don't know whether the above link reference is misleading because when going through it I got confused when
i read the following
Because 0 or Zero indicates "TRUE" and 1 indicates "FALSE" So where does 2 Come from ?COUNTIF($B$3:$D$5, ROW($1:$9)
becomes
COUNTIF({1,3,4; 5,6,7; 8,8,3},{1; 2; 3; 4; 5; 6; 7; 8; 9})
and returns
{1;0;2;1;1;1;1;2;0}.
So Basically i wanted to avoid Error #NUM
Thanks
Rapchik