Sumproduct

V

via135

hi

the double unary "--" which converts text value into numeric
is mostly used for ignoring errors..!!

-via135
 
B

Bob Phillips

Not really mate, it is used to coerce True/False arrays into 1/'0 arrays
which can then be summed.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
B

Bob Phillips

No, it is used to coerce True/False arrays to 1/0 arrays. SP is generally
used to test multiple conditions, and these tests return an array of TRUE or
FALSE. This is of no use to get a count, so that needs to be changed to
arrays of 1 and 0, which is what the double unary does.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Top