Log in

View Full Version : Search Criteria / Formula



GymWrecker
03-10-2016, 07:27 AM
Need help with the below formula! I need the third search criteria ")))*ISNUMBER(SEARCH("*1*",INDIRECT("FSR!$K$2:$K$1500")))) to count and return any number greater than 50. How can I adjust this formula to do that? Basically is going to look for "88DAA", "MG", and return the number of fields (count), over 50 between $K$2:$K$1500, that meet the three criterias. Please advise.

=SUMPRODUCT(ISNUMBER(SEARCH("*88DAA*",INDIRECT("FSR!$B$2:$B$1500")))*ISNUMBER(SEARCH("*MG*",INDIRECT("FSR!$G$2:$G$1500")))*ISNUMBER(SEARCH("*1*",INDIRECT("FSR!$K$2:$K$1500"))))

Thank you!

Admin
03-10-2016, 08:12 AM
I don't think you need INDIRECT. Anyway, try this one

=SUMPRODUCT(--(ISNUMBER(SEARCH("*88DAA*",FSR!$B$2:$B$1500))),--ISNUMBER(SEARCH("*MG*",FSR!$G$2:$G$1500)),--(FSR!$K$2:$K$1500>50))

Rick Rothstein
03-14-2016, 01:36 AM
I don't think you need INDIRECT. Anyway, try this one

=SUMPRODUCT(--(ISNUMBER(SEARCH("*88DAA*",FSR!$B$2:$B$1500))),--ISNUMBER(SEARCH("*MG*",FSR!$G$2:$G$1500)),--(FSR!$K$2:$K$1500>50))
I do not think you need those asterisks inside the SEARCH function calls.