#1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 103
Default Subtotal

What is the use of the numbers in Subtotal function

i.e 1,2,3,4,5,6,7,8,9

=Subtotal(1,a2:a45)
=Subtotal(2,a2:a45)
=Subtotal(3,a2:a45)
=Subtotal(4,a2:a45)
=Subtotal(5,a2:a45)
=Subtotal(6,a2:a45)
=Subtotal(7,a2:a45)
=Subtotal(8,a2:a45)
=Subtotal(9,a2:a45)

It Give me different Result

Thanks in Advance


  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1,805
Default Subtotal

1 gives you average, 2 count,.... and so on. See list below;
[lokup examples in HELP]
Value Explanation
1 AVERAGE
2 COUNT
3 COUNTA
4 MAX
5 MIN
6 PRODUCT
7 STDEV
8 STDEVP
9 SUM
10 VAR
11 VARP

"Hardeep_kanwar" wrote:

What is the use of the numbers in Subtotal function

i.e 1,2,3,4,5,6,7,8,9

=Subtotal(1,a2:a45)
=Subtotal(2,a2:a45)
=Subtotal(3,a2:a45)
=Subtotal(4,a2:a45)
=Subtotal(5,a2:a45)
=Subtotal(6,a2:a45)
=Subtotal(7,a2:a45)
=Subtotal(8,a2:a45)
=Subtotal(9,a2:a45)

It Give me different Result

Thanks in Advance


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 103
Default Subtotal

Thanks for Quick reply

What is STDEV,STDEVP,VAR,VARP


"Sheeloo" wrote:

1 gives you average, 2 count,.... and so on. See list below;
[lokup examples in HELP]
Value Explanation
1 AVERAGE
2 COUNT
3 COUNTA
4 MAX
5 MIN
6 PRODUCT
7 STDEV
8 STDEVP
9 SUM
10 VAR
11 VARP

"Hardeep_kanwar" wrote:

What is the use of the numbers in Subtotal function

i.e 1,2,3,4,5,6,7,8,9

=Subtotal(1,a2:a45)
=Subtotal(2,a2:a45)
=Subtotal(3,a2:a45)
=Subtotal(4,a2:a45)
=Subtotal(5,a2:a45)
=Subtotal(6,a2:a45)
=Subtotal(7,a2:a45)
=Subtotal(8,a2:a45)
=Subtotal(9,a2:a45)

It Give me different Result

Thanks in Advance


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1,805
Default Subtotal

STDEV is standard deviation - a measure of how widely values are dispersed
from the average value (the mean). This is calculated assuming data is a
sample. STDEVP assumes that data consists of the entire population.

VAR/VARP are variance (square of STDEV/STEDEVP)

Look under Statistical Functions for details and examples.


"Hardeep_kanwar" wrote:

Thanks for Quick reply

What is STDEV,STDEVP,VAR,VARP


"Sheeloo" wrote:

1 gives you average, 2 count,.... and so on. See list below;
[lokup examples in HELP]
Value Explanation
1 AVERAGE
2 COUNT
3 COUNTA
4 MAX
5 MIN
6 PRODUCT
7 STDEV
8 STDEVP
9 SUM
10 VAR
11 VARP

"Hardeep_kanwar" wrote:

What is the use of the numbers in Subtotal function

i.e 1,2,3,4,5,6,7,8,9

=Subtotal(1,a2:a45)
=Subtotal(2,a2:a45)
=Subtotal(3,a2:a45)
=Subtotal(4,a2:a45)
=Subtotal(5,a2:a45)
=Subtotal(6,a2:a45)
=Subtotal(7,a2:a45)
=Subtotal(8,a2:a45)
=Subtotal(9,a2:a45)

It Give me different Result

Thanks in Advance


  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 857
Default Subtotal

Hi,

These statistics are only valid if you can fairly assume that the
distribution of data is "normal" or bell shaped.

The formula for STDDEV and STEDEVP differ by the numerator inside of the
square root, in one case you divide by n, in the other case by n-1.

Variance is used in some cases because it is undimentioned or unitless and
many statisticians perfer that.

You might also ask what PRODUCT is - it is the product of all the numbers.
=5*2*123*.... for example.

These same 11 functions are available in the PivotTable and Subtotal and
with D-Functions.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Sheeloo" wrote:

STDEV is standard deviation - a measure of how widely values are dispersed
from the average value (the mean). This is calculated assuming data is a
sample. STDEVP assumes that data consists of the entire population.

VAR/VARP are variance (square of STDEV/STEDEVP)

Look under Statistical Functions for details and examples.


"Hardeep_kanwar" wrote:

Thanks for Quick reply

What is STDEV,STDEVP,VAR,VARP


"Sheeloo" wrote:

1 gives you average, 2 count,.... and so on. See list below;
[lokup examples in HELP]
Value Explanation
1 AVERAGE
2 COUNT
3 COUNTA
4 MAX
5 MIN
6 PRODUCT
7 STDEV
8 STDEVP
9 SUM
10 VAR
11 VARP

"Hardeep_kanwar" wrote:

What is the use of the numbers in Subtotal function

i.e 1,2,3,4,5,6,7,8,9

=Subtotal(1,a2:a45)
=Subtotal(2,a2:a45)
=Subtotal(3,a2:a45)
=Subtotal(4,a2:a45)
=Subtotal(5,a2:a45)
=Subtotal(6,a2:a45)
=Subtotal(7,a2:a45)
=Subtotal(8,a2:a45)
=Subtotal(9,a2:a45)

It Give me different Result

Thanks in Advance




  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 837
Default Subtotal

"Shane Devenshire" wrote:

These statistics are only valid if you can fairly assume that the
distribution of data is "normal" or bell shaped.


Not true. AVERAGE and VAR are unbiased sample estimators of the population
mean and variance, regardless of the distribution. VARP and STDEVP are only
unbiased with a complete population enumeration, which necessitates a
discrete finite (and hence non-normal) population.

Where you would need normality is to assume a Student's t distribution for
(AVERAGE-mu)/(STDEV/SQRT(n))

Jerry
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I Subtotal, then Sort by Subtotal Amounts? dnamertz Excel Discussion (Misc queries) 3 October 29th 06 12:17 AM
pasting to subtotal lines without replacing hidden -non-subtotal l harleydiva67 Excel Discussion (Misc queries) 1 October 12th 06 06:02 PM
Bolding the subtotal lines automaticlly When using the Subtotal fu 06Speed6 New Users to Excel 2 October 5th 06 03:52 PM
copy subtotal value only, subtotal value can be vlookup by others BB Excel Discussion (Misc queries) 1 June 28th 06 11:10 PM
Subtotal of Subtotal displays Grand Total in wrong row Thomas Born Excel Worksheet Functions 5 January 6th 05 01:46 PM


All times are GMT +1. The time now is 03:35 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"