Not sure I follow exactly what you need, however here is how multiple IF's work
Nesting if statements works like this:
{ } are not part of the formula and there as describers of the line
=IF(test_statements,
{then}do this,
{else}IF(test2_statements,
{then}do this,
{else}IF(test3_statements,
{then}do this,
{else},do this)
So for example, the following logic:
If A1 > 10 then B2, but if A1 < 10 then C2, if neither then return D2
would be
=IF(A1>10,B2,IF(A1<10,C2,D2)
Note: If your test statement comes back TRUE it will use the first argument, FALSE will use the second. Either argument can be another IF statement with it's own test, and result arguments.
So
=IF(1=1, "Result A","Result B") will return "Result A", but
=IF(1=2, "Result A","Result B") will return "Result B".
Bookmarks