ISNUMBER(SEARCH) for multiple values, too many commands

ttianna

New Member
Joined
May 2, 2011
Messages
4
I want to use ISNUMBER and SEARCH to return specific values if certain values are found in another cell, but I have too many.

=IF(ISNUMBER(SEARCH("assessment",D4)),"Graded",IF(ISNUMBER(SEARCH("Aplia",D4)),"Graded",IF(ISNUMBER(SEARCH("Other",D4),"Not Graded"))))

I want it to return "Graded" if it finds "Assessment" or "Aplia", and "Not Graded" if it finds "Other", and a FALSE return if it doesn't find any of those terms.

What I get now with this formula is an error that says:
"You've entered too many arguments for this function."

I tried using an OR command to nest further, but that didn't work either.
 
Hi,

You have "Too many arguments...." because you have a "value if false" before your second IF statement and subsequently, this will fix it:

Also, I don't recommend using a SPACE ( " " ) as a result if false, it will make future comparisons/math problematic.


Book1
CDIJ
1TRANSPORT
2TRANSPORT
5
6transport
Sheet137
Cell Formulas
RangeFormula
J1=IF(ISNUMBER(SEARCH("PETROL",C6)),"TRANSPORT",IF(ISNUMBER(SEARCH("TRANSPORT",C6)),"TRANSPORT",IF(ISNUMBER(SEARCH("HARDWARE",C6)),"HARDWARE","")))
J2=IF(OR(ISNUMBER(SEARCH({"PETROL","TRANSPORT"},C6))),"TRANSPORT",IF(ISNUMBER(SEARCH("HARDWARE",C6)),"HARDWARE",""))


J1 formula fixes your too many argument issue, using a Blank rather than a Space for "value if false".
Alternatively, use J2 formula, a bit shorter.
 
Upvote 0

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi, I need a favor for this formula where I don't need return value to be "FALSE". I used this:

=IF(ISNUMBER(SEARCH("PETROL",C6)),"TRANSPORT"," ",IF(ISNUMBER(SEARCH("TRANSPORT",C6)),"TRANSPORT"," ",IF(ISNUMBER(SEARCH("HARDWARE",C6)),"HARDWARE"," ")))

But it returns the error message "Too many arguments were entered for this function".Please help.

Does the following meet what you need?

=IFERROR(LOOKUP(9.99999999999999E+307,SEARCH({"hardware","petrol","transport"},C6),{"hardware","petrol","transport"}),"")
 
Upvote 0
I have a similar issue. I want to return three possible options First, Second or Other. This is what I have so far =IF(ISNUMBER(SEARCH("*1st Lien*", '[Book3] Column Name'!C10), "Second Lien", IF(ISNUMBER(SEARCH("*2nd Lien*", '[Book3] Column Name'!C10), "Second Lien", IF(ISNUMBER(SEARCH("*S*", '[Book3] Column Name'!C10), "Other", '''')
 
Upvote 0
I have a similar issue. I want to return three possible options First, Second or Other. This is what I have so far =IF(ISNUMBER(SEARCH("*1st Lien*", '[Book3] Column Name'!C10), "Second Lien", IF(ISNUMBER(SEARCH("*2nd Lien*", '[Book3] Column Name'!C10), "Second Lien", IF(ISNUMBER(SEARCH("*S*", '[Book3] Column Name'!C10), "Other", '''')
solved it. nvm
 
Upvote 0

Forum statistics

Threads
1,215,267
Messages
6,123,964
Members
449,137
Latest member
yeti1016

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