Probability

mlovett

New Member
Joined
Apr 27, 2010
Messages
3
I am wondering how to take a percentage or fraction or something that represents "probability" and receive a "true" or "false" statement.

For example, if I give the probability of 40% how can i have excel generate a true or false statement, or "yes" or "no"

I am not quite the mathematics genius so any help will do.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hello & Welcome to the Board,

This will look at A1 and if 40% then Yes or elso No.

=IF(A1=0.4,"Yes","No")
 
Upvote 0
Thanks JeffreyBrown!

So, if I have cell A1 generate a random value between 1 and 10, then how do i have the function say:

if cell A1 is 1,2,or 3 then "yes" else "no"
 
Upvote 0
You need an OR for that or an array...

=IF(OR(A1={1,2,3}),"Yes","No")


=IF(OR(A1=1,A1=2,A1=3),"Yes","No")
 
Upvote 0

Forum statistics

Threads
1,215,694
Messages
6,126,252
Members
449,305
Latest member
Dalyb2

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