Yes No formula

  • Thread starter Thread starter Chris Watson
  • Start date Start date
Yes. What's the Yes No in response to, eg perhaps something like this:-

=IF(A1>10,"Yes","No")

=if(logical_test,value_if_true,value_if_false)
 
Hi Chris!

Or another way of interpreting than Ken

=IF(A1="yes",5,IF(A1="no",10,""))

Or I could interpret you as wanting:

=IF(OR(A1="yes",A1="Y"),5,IF(OR(A1="no",A1="N"),10,""))

You need to be a tad more explicit in your questions.
--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
Back
Top