IF/AND/OR Functions HELP

Kreese11

New Member
Joined
Mar 3, 2014
Messages
2
Good Morning. I’m having a hard time writing a formula. Every time I do it get it kicked back so I needed some additional help from people. I am attempting to write a function that states if a person is located in the USA and hit their target of 0% or higher they get 10 points. If not then they get zero points. I thought the formula should be written like this:=IF(B3=”USA”,(AND (M3=>0%,10,0)))
NameCountryScoreTargetVariancePoints
EricUSA
29.09%
<tbody> </tbody>
30.98%
<tbody> </tbody>
-6.10%
<tbody> </tbody>
0
MariaUSA
30.67%
<tbody> </tbody>
27.77%
<tbody> </tbody>
10.46%
<tbody> </tbody>
10
JohannaCAN
37.08%
<tbody> </tbody>
35.95%
<tbody> </tbody>
3.14%
<tbody> </tbody>
0
<tbody> </tbody>
So for example, if cell M3 is 2% then the person would get 10 points. However, my formulas keep producing FALSE in the cells. Can someone please help me out with why this keeps happening?Thank you in advance.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Try this
=IF(AND(B3="USA",M3>=0%),10,0)
<colgroup><col width="418" style="width: 314pt; mso-width-source: userset; mso-width-alt: 15286;"> <tbody> </tbody>
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,583
Members
449,089
Latest member
Motoracer88

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