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.
=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.