Excel 2003 Functions References
Excel 2003 Functions References
Summary
Functions Wizard
Performing Calculations
The Function Wizard allows you to choose from a large selection of
functions. It places the equal sign and the function name in the cell 1. Functions
automatically, and you select the arguments (range of cells). 2. References
References
Relative References
Excel makes moving and copying formulas easy by interpreting cell references in a formula relative
to the formula’s position. By default Excel uses relative references when you create a formula. A
relative reference is a cell reference that changes if the formula is copied into another location. If
you are totaling the information in each column all you need to do is set up the first formula,
=sum(D7:D17), and when you AutoFill the formula to the right for the next column, Excel knows
to change the references to the cells in that column. The formula in column E would read
=sum(E7:E17).
Absolute References
In order to refer to a specific cell in a formula you must make the cell reference absolute. An
absolute cell reference will always refer to the same exact cell location regardless of where the
formula is copied. To make a cell reference absolute you simply put a $ in front of the column letter
and in front of the row number.
$A$4 is an absolute
reference, D7 is a
relative reference.
© 2005 Towson University -This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs License.
Details available at http://www.towson.edu/OTStraining. 410-704-4070.
U NDERSTANDING F ORMULA R EFERENCES WITH E XCEL 2003
Mixed References
A mixed reference is a cell reference that holds either the row or column constant when the formula
is copied to another location. Unlike an absolute reference, a mixed reference will contain only one
dollar sign. By entering a $ in front of A, B, or C, etc. it indicated that no matter where the formula
is copied it will always look in that column for the cell.
In example 1, the formula multiplies the Grand Total from January (B8) and the Discount Vendor1
(B15). Both of the cell references used in the calculation are relative, which means that the
references will change as the formula is copied. Once the formula is copied into the next column for
February, it changes to C8*C15. This causes a problem because C15 does not contain the Discount
Vendor. In Example 2, the formula is the same except the reference to Discount Vendor ($B15) is a
mixed reference. The $ in front of B indicated that no matter where the formula is copied, it will
always look in column B for the Discount Vendor.
2
U NDERSTANDING F ORMULA R EFERENCES WITH E XCEL 2003
Ranges
Naming Ranges
If you frequently reference a range of cells in formulas or you need to get to a certain place in the
workbook quickly, you can give a name to that range. The name can then be used in place of the
cell range whenever you reference it. For example Quantity may be easier to remember than
D7:G17.
Range names cannot have spaces and must start with a letter.
To name ranges:
Steps:
If you need to get to a named range quickly, simply type in the name of the range in the NAME BOX
and press Enter on the keyboard.
3
U NDERSTANDING F ORMULA R EFERENCES WITH E XCEL 2003
Example 1
In Example 1: (B1+B2)*B3, Excel would first add B1 + B2 since they are in parentheses, and then
multiply that result by B3.
It is often more helpful to use a predefined Function rather than a basic formula to arrive at the
value you need. Functions are often time savers because they allow you to specify ranges instead of
naming each cell individually. (See Table 1.1)
Functions have two parts: the Function Name and the Arguments. The function name indicates
the type of calculation to be performed and the arguments tell Excel which cells to use. The function
name always follows the equal sign (=) and the arguments follow in parentheses. For example:
=SUM(B1:C3)
4
U NDERSTANDING F ORMULA R EFERENCES WITH E XCEL 2003
Function Description
Adds all the values for the specified
SUM
cells.