Generating a % of distribution curve using standard deviations

mlarson

Well-known Member
Joined
Aug 25, 2011
Messages
509
Office Version
  1. 2010
Platform
  1. Windows
Hi all, I am looking for the formula to generate the % of the distribution curve that would fall below a certain number of standard deviation(s). For example, +1 standard deviation would have 84.1% of the curve below it, and -1 standard deviation would have 15.9% of the curve below it.

My question is, given a certain standard deviation (say, 0.258), what formula would generate the % of the curve beneath that given standard deviation?

Thanks in advance for your help!
Mark
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Code:
      A- --B-- ----------------C----------------
  1   sd 0.248                                  
  2      84.1% B2: =NORMDIST(1*sd, 0, sd, TRUE) 
  3      15.9% B3: =NORMDIST(-1*sd, 0, sd, TRUE)
 
Upvote 0
You can instead use =NORMSDIST(1), where the 1 represents 1 standard deviation above the mean.
 
Upvote 0

Forum statistics

Threads
1,224,541
Messages
6,179,418
Members
452,912
Latest member
alicemil

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