Adding two Find formulas together

ensmith

New Member
Joined
Oct 25, 2011
Messages
48
I am trying to add two find formulas together

=IF(FIND("Negative",P2),"Negative"),(IF(FIND("Positive",P2),"Positive"))

Thanks.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Is it just binary choices?

If so, this will put in Positive if the cell doesn't contain the word negative

=IF(COUNTIF(P2:P2,"*Negative*")=1,"Negative","Positive")

If its just straight up Positive or Negative

=IF(COUNTIF(P2,"Negative")=1,"Negative",IF(COUNTIF(P2,"Positive")=1,"Positive",""))
 
Last edited:
Upvote 0
I am trying to add two find formulas together

=IF(FIND("Negative",P2),"Negative"),(IF(FIND("Positive",P2),"Positive"))

Thanks.

Also...

=LOOKUP(9.99999999999999E+307,SEARCH($A$2:$A$3,P2),$A$2:$A$3)

where A2:A3 house the words Negative and Positive.
 
Upvote 0

Forum statistics

Threads
1,196,249
Messages
6,014,229
Members
441,808
Latest member
xplainer

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