View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Kevin Vaughn
 
Posts: n/a
Default IF statement question

Yes the * is the multiplication symbol. In this instance, it is multiplying
two boolean values (true or false.) If both values are true, that works out
to be the same as AND. True and True = True. True * True = 1 (which is
true.) Anything else will be 0 or false. False * true (same as 0 * 1 and as
we all know, 0 times anything is 0.) True * False or False * False will be 0
(or false.)
--
Kevin Vaughn


"KarenH" wrote:

Thanks to Franz and SteveG for this explanation -- that helped a lot! I'd
never seen the asterisk used as an "and" before, I always think of it as a
multiplication symbol.

I appreciate the helpful answers!



"Franz Verga" wrote:

Nel post
*KarenH* ha scritto:

Can someone translate the following IF statement for me?

=IF((A2<"")*(ISNA(MATCH(A2,$A$1:A1,0))),"A","B")

I'm confused abut the first part, specifically the asterisk
separating the two criteria.
Thanks!


Hi Karen,

The formula can be written also in this way:

=IF(AND((A2<""),(ISNA(MATCH(A2,$A$1:A1,0)))),"A", "B")

Its mean that:

IF A2<"" (i.e. A2 is not empty)

AND the value in A2 doesn't match the value in A1(the formula MATCH is used
to search the value in A2 in A1, if the two values are different, MATCH
function returns #N/A! error the formula ISNA convert the error in TRUE)

THEN write A in the cell the formula is written

ELSE write B in the cell.

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy