I apologize but I must repeat:
=($B$1:$B$3008=$A11) is meaningless for Numbers !
In E1, the formula is:
=($B$1:$B$10=$A7)
_the result is wrong (some cells in the range are FALSE)_
In E2, the formula is:
=($C$1:$C$10=$A6)
the result is correct (some cells in the range are FALSE)
As you see it's perfectly meaningless.
I think the fundamental difference between the two apps is that Excel treats a boolean return (e.g. $B$1:$B$3008=$A11) as a 1 or a 0. Numbers does not.
Wrong.
in D3, the formula is =B*C
both are FALSE so it returns 0
in D4, the formula is =B*C
both are TRUE so it returns 1
We just get the blue triangle telling us that Numbers accepts to apply on booleans but that it is borderline.
To convert a boolean to a number, just multiply it by one.
=B*1
Yvan KOENIG (from FRANCE vendredi 7 novembre 2008 15:41:23)
To recover what you get in Excel you must replace it by
=($B$1:$B$12=$A11)*1
and replace
=($B$1:$B$3008=$A11)*($C$1:$C$3008=$A10)
by
=($B$1:$B$3008=$A11)*($C$1:$C$3008=$A10) *1
Yvan KOENIG (from FRANCE vendredi 7 novembre 2008 15:19:27)