Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Excel only calculates the confidence interval for a population mean through
the =CONFIDENCE() function. I want the flexibility to calculate the confidence interval for a sample mean as well. Can Microsoft develop a CONFIDENCE function for sample data and not just population data? |
#2
![]() |
|||
|
|||
![]()
What's wrong with
=TINV(alpha,n-1)*s/SQRT(n-1) where s = sample SD n = sample size If you really want a single function, you can write a VBA user defined function that you can call from the worksheet Function SConfidence(alpha, standard_dev, size) SConfidence = WorksheetFunction.TInv(alpha, size - 1) _ * standard_dev / SQRT(size - 1) End Function Jerry Cyler wrote: Excel only calculates the confidence interval for a population mean through the =CONFIDENCE() function. I want the flexibility to calculate the confidence interval for a sample mean as well. Can Microsoft develop a CONFIDENCE function for sample data and not just population data? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
html to excel | Excel Discussion (Misc queries) | |||
Excel error - Startup (and Acrobat PDFMaker) | Setting up and Configuration of Excel | |||
Merge from Excel to Excel | Excel Discussion (Misc queries) | |||
Shortcut file fails to open | Excel Discussion (Misc queries) | |||
pivotcell object to excel 2000 | Excel Discussion (Misc queries) |