"False" returned in complex statement

BillTony

Board Regular
Joined
May 3, 2017
Messages
70
Hi there,

I am seeking to eliminate the "False" value from being returned within a fairly complex formula that is located in column AC.

I believe that this "False" is due to the 2nd condition in the formula.

All the text strings are hard-coded in the existing inventory system, and cannot be altered.

So: If the condition is met in column Z - AND the condition is met in column AA - the condition is must be met in column AB in order to take no action (blank...).

However, if the condition is not met in column AB, an order must be placed.

All of the testing I've done thus far indicates that this formula does indeed work as written.

However, I'm getting a "False" throughout the range in AC, and really need to just return a blank for the sake of legibility...

Thanks in advance!

Code:
=IF(NOT(ISNUMBER(SEARCH("Part in stock",Z3))),"", IF(SUMPRODUCT(--ISNUMBER(SEARCH({"5 units or greater","New Order Placed"},AA3)))>0,IF(ISNUMBER(SEARCH("No Action Needed",AB3)),"","PLACE ORDER NOW")))
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Try
=IF(NOT(ISNUMBER(SEARCH("Part in stock",Z3))),"", IF(SUMPRODUCT(--ISNUMBER(SEARCH({"5 units or greater","New Order Placed"},AA3)))>0,IF(ISNUMBER(SEARCH("No Action Needed",AB3)),"","PLACE ORDER NOW"),""))
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,249
Members
449,075
Latest member
staticfluids

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