Find Function - or something along these lines! HELP!!!

Amy33

New Member
Joined
Jul 24, 2019
Messages
6
Hi!

I am trying to find a formula that will help me... not sure if anyone can help me at all pretty please!!

I need something that to have a formula that will help me...

So the formula would be...

If cell A1 contains the word 'Joint' then cell B1 needs to be multiplied by 2, if cell A1 contains the word 'Family', cell B1 needs to be multiplied by 3, if it doesn't contain anything else then B1 multiplies by 1...

I managed to get two functions in by using formula:

=IF(ISERROR(FIND("Family",A1)),B1*1,B1*3)

But I couldn't get the joint in there as well :( any help would be really appreciated!!!
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
How about
=B1*IF(ISNUMBER(SEARCH("Joint",A1)),2,IF(ISNUMBER(SEARCH("Family",A1)),3,1))
 
Upvote 0
Maybe this and family comes first :)

=B1*IF(ISNUMBER(SEARCH("family",A1)),3,IF(ISNUMBER(SEARCH("joint",A1)),2,1))

So if family and joint is in A1 then you get 3 not 2.
 
Upvote 0
Thank-you so much for all of your help!! Now trying out, so fingers crossed, but looks like I have some bits that are working :) Thanks so much again!
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,332
Messages
6,124,314
Members
449,153
Latest member
JazzSingerNL

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