Formula to return results based on multiple values in multiple cells

weeksy

New Member
Joined
Aug 21, 2014
Messages
29
Office Version
  1. 365
Platform
  1. Windows
Hi Again

My last query was resolved so quickly I'm hoping this great community can do teh same again.

I am trying to create an order workability column. Based on various criteria I need this column to display either "TBC", "N/A" (text not error #N/A), "Workable", or "Awaiting Source".

The criteria is:

If AW6 = "Not Required", return text "N/A"
OR
If AW6 = "In Progress" or "Issue", return text "TBC"
OR
If AW6 - "Required" AND BE6 = "In Progress" or "Issue" return "Awaiting Source"
OR
If AW6 - "Required" AND BE6 = "Complete" or "Ingested" return "Workable"

Is this doable?

Many thanks in advance!

Hilary
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Maybe something along these lines:

VBA Code:
=IF(AW6="Not Required","N/A",IF(OR(AW6="In Progress",AW6="Issue"),"TBC",IF(AND(AW6="Required",OR(BE6="In Progress",BE6="Issue")),"Awaiting Source",IF(AND(AW6="Required",OR(BE6="Complete",BE6="Ingested")),"Workable"))))

This formula will return false if none of the conditions are met.
 
Upvote 0
Solution
Maybe something along these lines:

VBA Code:
=IF(AW6="Not Required","N/A",IF(OR(AW6="In Progress",AW6="Issue"),"TBC",IF(AND(AW6="Required",OR(BE6="In Progress",BE6="Issue")),"Awaiting Source",IF(AND(AW6="Required",OR(BE6="Complete",BE6="Ingested")),"Workable"))))

This formula will return false if none of the conditions are met.
This works brilliantly, thanks
 
Upvote 0

Forum statistics

Threads
1,215,111
Messages
6,123,152
Members
449,098
Latest member
Doanvanhieu

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