Link to home
Start Free TrialLog in
Avatar of John Darby
John DarbyFlag for United States of America

asked on

Excel IF statement

Greetings,
I have a column filled with YES/NO answers to questions posed in a prior column. In the next column I would like to populate with a numeric value where YES=1 and NO=0. I have tried this seemingly simple function, but am not sure how to do this. Any help is appreciated.
Thank you,
johnD
ASKER CERTIFIED SOLUTION
Avatar of Haris Dulic
Haris Dulic
Flag of Austria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of John Darby

ASKER

=IF(E20="YES",1,0)

Thank you!