Searching for multiple text

Austin Lang

Board Regular
Joined
Sep 10, 2021
Messages
51
Office Version
  1. 365
  2. 2021
  3. 2019
Platform
  1. Windows
Hello all,

I am trying to create a report that shows all cleaning failures over the course of a month. Failures are called both "Failed" and "Aborted". The formula I have been using works well for Failed. However, I need to be able to search for both of those terms. Everything I have found says that I can add an OR function to search multiple, but it doesn't return anything when i add it. What am I missing here? Is it the Filter function causing my issue?

The original working formula:
=IFERROR(FILTER(Form!$A$5:$X$3001,ISNUMBER(SEARCH("Failed",Form!C5:C3001))),"")

Thanks in advance,
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Hello, try:

Excel Formula:
=IFERROR(FILTER(Form!$A$5:$X$3001,(ISNUMBER(SEARCH("Failed",Form!C5:C3001)))+(ISNUMBER(SEARCH("Aborted",Form!C5:C3001)))),"")
 
Upvote 0
Solution
try like this

Excel Formula:
=IFERROR(FILTER(Form!$A$5:$X$3001,(Form!C5:C3001="Failed")+(Form!C5:C3001="Aborted")),"")
 
Upvote 0

Forum statistics

Threads
1,224,813
Messages
6,181,109
Members
453,021
Latest member
Justyna P

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