How can you convert the false/true into 1/0 in Excel?

K

Ken Wright

=--Your_formula

or

=Your_formula*1

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

------------------------------­------------------------------­----------------
It's easier to beg forgiveness than ask permission :)
------------------------------­------------------------------­----------------
 
R

Ron Coderre

Generally, 2 ways:

Either multiply by the number 1
ExampleS:
=(4=4) ->Returns TRUE
=(4=4)*1 ->Returns 1

=(5=4) ->Returns FALSE
=(5=4)*1 ->Returns 0

or

Prepend two minus signs
Example:
=(4=4) ->Returns TRUE
=--(4=4) ->Returns 1

=(5=4) ->Returns FALSE
=--(5=4) ->Returns 0

Does that help?


Regards,
Ron
 
Top