IF formula but ignoring conditions before

maywal

New Member
Joined
Dec 19, 2016
Messages
29
I have the formula below:

=IF(H5="Yes","Booked",IF(I5="Yes","T&C Sent",IF(J5="Yes","T&C Accepted",IF(M5="Yes","Invoice sent",IF(N5="Yes","Paid",IF(P5>0,"Typing",IF(S5="Yes","completed","Take action")))))))

I am using it to automatically show me which stage each job is at without having to go through the whole sheet. However, this formula only recognises the first condition even if the one after is true. I want it to look at the first condition and decide if it is true, then if this one plus the next one is true then "value" and so on.

How do I do this?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Since each column is a progressive stage of the job just reverse the order of the IFs, so IF(S5="Yes" is first, then comes IF(P5>0, etc until your last condition is IF(H5="Yes"...
That way you dont need to worry about previous conditions.

You're basically placing your IFs in order of importance, so Job Completion first and Booked last.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,732
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top