How to use IS NUMBER Search and IF AND together

redJohn89

New Member
Joined
Jul 11, 2016
Messages
7
Hi,

I am trying to put together a formula that checks two conditions:
1) IF cell contains a particular text AND
2) IF cell > 500 THEN

Return TRUE else FALSE

For condition 1, i am trying to look for a string "Demo" in my cell

If you see the attached image, cell F2 is returning false since C2 does not contain the text "Demo" AND cell E2 < 500 so both conditions are not being satisfied
Cell F3 is returning a TRUE since C3 contains "Demo" and E3 > 500 and so on for the rest

How do i come up with a formula that checks for these conditions together and returns TRUE or FALSE
 

Attachments

  • qq.PNG
    qq.PNG
    10 KB · Views: 4

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Try this:
Excel Formula:
=AND(ISNUMBER(SEARCH("Demo",C2)),E2>500)
 
Upvote 0

Forum statistics

Threads
1,215,853
Messages
6,127,334
Members
449,376
Latest member
karenmccabe

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