I need a 0 and not True or False

S

Syd

The formula below works fine. Now I need it to generate a 0 instead of a true or False. I know it's possible, but forgot how. Can some one out there assist

=IF(Results!$C$12>=1440,IF(BN11="X",Results!$C$12)

Thanks,
 
F

Frank Kabel

Hi
sorry, misread your question. Try
=IF(Results!$C$12>=1440,IF(BN11="X",Results!$C$12,0),0)
 
T

Tushar Mehta

Untested alternatives to Frank's suggestion:

=N(IF(Results!$C$12>=1440,IF(BN11="X",Results!$C$12)))

=IF(AND(Results!$C$12>=1440,BN11="X"),Results!$C$12,0)

or

=N((Results!$C$12>=1440)*(BN11="X")*Results!$C$12)

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Business solutions leveraging technology
Microsoft Most Valuable Professional (MVP) 2000-2004
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top