maximillianrg

Board Regular
Joined
Aug 7, 2014
Messages
75
Office Version
  1. 2016
Platform
  1. Windows
Hello Excel Masters

The below formula works perfectly and returns either a blank cell or a date

=IF(ISNA(INDEX(RawCu!K:K,MATCH(1,("54-Complete-Billing Review"=RawCu!E:E)*(C5=RawCu!B:B),0))),"",INDEX(RawCu!K:K,MATCH(1,("54-Complete-Billing Review"=RawCu!E:E)*(C5=RawCu!B:B),0)))

The above formula looks the string "54-Complete-Billing Review" in column E. I now need to modify the formula so that if it finds either "54-Complete-Billing Review" or "55-foo" on column E it returns the value the original formula does

Any ideas?
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
To use an OR condition in an array formula you should add the two conditions. So see if this works in your case

...MATCH(1,(("54-Complete-Billing Review"=RawCu!E$1:E$1000)+("55-foo"=RawCu!E$1:E$1000))*(C5=RawCu!B$1:B$$1000),0)...

Note: for the sake of performance avoid references to entire columns, like K:K, E:E or B:B, in array formulas. Try definite ranges, E1:E1000, B1:B1000 etc, for example.

M.
 
Upvote 0
Instead of
=IF(ISNA(formula),"",formula)

Try
=IFERROR(formula,"")

M.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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