Formula with FIND in the mix

Aimee S.

Board Regular
Joined
Sep 28, 2010
Messages
236
Office Version
  1. 365
Platform
  1. Windows
Halp!

Not sure if this is a Vlookup type formula with multiple conditions or an IF AND formula, but regardless, a FIND element is required.

What is the formula for:

If value in column A equals "OSP"
If value in column B equals 1
If value in column E contains the word "Camden"
Then pull value from column D where all of these conditions are met in the same row. :confused:
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Possibly

=SUMPRODUCT(--(A1:A100="OSP"),--(B1:B100=1),--ISNUMBER(FIND("Camden",E1:E100)),D1:D100)
 
Upvote 0
:( When I try that I get

"You've entered to many arguments for this function"

I have Office 2010.
 
Upvote 0
Probably this formula:
=IF(AND(A1="OSP",B1=1,ISNUMBER(FIND("Camden",E1,1))),D1,"Doesn't Match")
 
Last edited:
Upvote 0
It seems to work here (Excel 2010)

Excel Workbook
ABCDEL
1OSP110xCamdens10
2OSP111zzz
3ASP112xCamdens
4ASP213ggg
Sheet11
 
Upvote 0
Taurean-Thanks but the formula has to be able to search the entire columns which are 8000+ long and subject to change for the conditions I outline in order to find the single row that matches that description in the mix.

VoG- this time when I tried it it took :) Not sure what was up before. Thanks much.
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,790
Members
452,942
Latest member
VijayNewtoExcel

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