Multiple IF formulas

  • Thread starter Thread starter sriddle
  • Start date Start date
Yes, there are several ways to do that. What are you really trying to do?


One way:

=IF(<condition1>,1, 2) + IF(<condition2>, 3, 4)


another:

=IF(<condition1, 1, IF(<condition2>, 2, 3))
 
Yes.

I think you can nest upto seven IFs in a formula.

=IF(cond1,IF(cond2,do_true_2,do_false_2),do_false_1) ...
 
Yes, here's one example with 3 IFs:

=IF(A1="","blank",IF(A1<0,"negative",IF(A1>0,"positive","zero")))

Hope this helps.

Pete
 

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

Back
Top