if or not if ???

  • Thread starter Thread starter pls123
  • Start date Start date
P

pls123

hello all !!
i write just to ask if this...

=IF(A1=5;TRUE;FALSE)

is the same to this....

=(A1=5)

and the if function is useful just if i need result
different from true / false

tx !
paolo ita
 
Hi,

If all you want to do is return TRUE/FALSE then =A1=5 is sufficient.

If you want a number you can use

=--(A1=5)

Which will return 1 or 0

--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top