Statistical Analysis

aabbasi

Board Regular
Joined
Mar 4, 2002
Messages
188
Could someone help me!
I have 3 columns. Lets say in column A, I have values 2,13,46,5,16...upto 70 enteries. In column B I have values 1,32,15,8,20...upto 70 values. And finally in column C there is a difference of Column A-Column B.

I want to find out the PROBABILITY based on column C values that
-- How many of my values will fall between range 5 & 10 or lets say between -1 and 10 and so on.

Any help will be highly appreciated. Thank you
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
On 2002-03-05 18:50, aabbasi wrote:
Could someone help me!
I have 3 columns. Lets say in column A, I have values 2,13,46,5,16...upto 70 enteries. In column B I have values 1,32,15,8,20...upto 70 values. And finally in column C there is a difference of Column A-Column B.

I want to find out the PROBABILITY based on column C values that
-- How many of my values will fall between range 5 & 10 or lets say between -1 and 10 and so on.

Any help will be highly appreciated. Thank you

Sounds like you want a count of diff values between two criteria:

In D1 enter: 5
In E1 enter: 10

In F1 enter:

=COUNTIF(C:C,">"$D1)-COUNTIF(C:C,">="$E1)

The above formula does count according an exclusive between condition.
 
Upvote 0

Forum statistics

Threads
1,213,544
Messages
6,114,249
Members
448,556
Latest member
peterhess2002

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