Cara menggunakan calculate selected cells excel

This guide will detail how to calculated the relative standard deviation (%RSD) using Excel, then walk through a worked example and finally detail the limitations of the calculation. Percentage relative standard deviation is a widely used statistical tool but strangely there is no automated function in any version of Microsoft Excel.

Relative Standard Deviation in Excel 2003, 2007 & 2010

%RSD is a powerful tool to statistically inspect the variation in sets of data but a specific function is not available in Excel 2003, 2007 or even 2010. To calculate the %RSD in Microsoft Excel a short formula must be used:

= (STDEV(Data Range) / AVERAGE(Data Range))*100

= (STDEV(A1:A11) / AVERAGE(A1:A11))*100

Cara menggunakan calculate selected cells excel

The above %RSD example has been entered into the Excel formula bar and will calculate the percent relative standard deviation of the 5 value data set E6 to E11. In the cell where the formula is written a value between 0-100 will be reported. The result is expressed as an percentage, with a low number (<2.5%) indicating a small spread of values and a high value indicating a significant spread of results.

Why is %RSD So Important?

%RSD (relative standard deviation) is a statistical measurement that describes the spread of data with respect to the mean and the result is expressed as a percentage. The %RSD function is popular with non-statisticians as the interpretation is based on a percent result and not some abstract value. The main use for %RSD is in analytical chemistry and is routinely used to assess the variation of sets of data.

%RSD Excel Worked Example

The excel %RSD calculation requires two functions; Average and STDEV. The AVERAGE function [=average(population)] calculates the mean of the data set while the STDEV [=STDEV(population)] calculates the standard deviation (SD) of the data. The final stage of the calculation is to express the result as a percent which the *100 does. This following %RSD example is based upon a data set of 5 values. The image on the left displays the full calculation while the right image displays the numerical values.

Cara menggunakan calculate selected cells excel
Cara menggunakan calculate selected cells excel

The short version for the left table is to combine the average and SD calculation into one function and this would read:

=(STDEV(population)/(AVERAGE(population))*100

The calculation from the previous example would be expressed as:

Cara menggunakan calculate selected cells excel

Relative Standard Deviation Excel Limitations

Percent relative standard deviation is popular but there are limitations to the statistical method. The main limitation is when the average is very small (<1) and a small variation in the set of data will result in a large result. The data set for %RDS must be based around one set of results, it is not applicable when there are different discrete sets of results. The data set must be larger than 5 for a meaningful result.

If range contains text to check against, criterion must be a string. criterion can contain wildcards including COUNTIF(A1:A10,"Paid")0 to match any single character or COUNTIF(A1:A10,"Paid")1 to match zero or more contiguous characters. To match an actual question mark or asterisk, prefix the character with the tilde (COUNTIF(A1:A10,"Paid")2) character (i.e. COUNTIF(A1:A10,"Paid")3 and COUNTIF(A1:A10,"Paid")4). A string criterion must be enclosed in quotation marks. Each cell in range is then checked against criterion for equality (or match, if wildcards are used).

  • If range contains numbers to check against, criterion may be either a string or a number. If a number is provided, each cell in range is checked for equality with criterion. Otherwise, criterion may be a string containing a number (which also checks for equality), or a number prefixed with any of the following operators: COUNTIF(range, criterion)2, COUNTIF(range, criterion)3, COUNTIF(range, criterion)4, COUNTIF(range, criterion)5, or COUNTIF(range, criterion)6, which check whether the range cell is equal to, greater than, greater than or equal to, less than, or less than or equal to the criterion value, respectively.

  • Notes

    • COUNTIF(range, criterion)7 can only perform conditional counts with a single criterion. To use multiple criteria, use COUNTIF(range, criterion)8 or the database functions COUNTIF(range, criterion)9 or range0.
    • COUNTIF(range, criterion)7 is not case sensitive.

    Examples

    Make a copy

    See Also

    COUNTIF(range, criterion)8: Returns the count of a range depending on multiple criteria.

    range3: Returns a conditional sum across a range.

    range0: Counts values, including text, selected from a database table-like array or range using a SQL-like query.

    COUNTIF(range, criterion)9: Counts numeric values selected from a database table-like array or range using a SQL-like query.