Microsoft Excel Tutorial Introduction
Microsoft Excel Tutorial Introduction
EXCEL
Objective
◦ At the end of this tutorial the participants will have the knowledge on how to work efficiently, by
working with shortcut keys and access keys, to format the
Course Outline
◦ Parts of the Excel
◦ Keyboard Shortcuts and Access Keys
◦ Formulas and Functions
◦ Data Validation
◦ Custom Number Formats
◦ Making Worksheet Error Free (Finding and Correcting Formula Errors)
◦ Conditional Formatting
◦ Tables and Charts
◦ Pivot and Pivot Chart
PARTS OF THE EXCEL
Active Cell Indicator
◦ This dark outline indicates the currently active cell (one of the 17,179,869,184 cells on each worksheet).
Name box
This box displays the active cell address or the name of the selected cell, range, or object.
Formula bar
◦ Note: You can also hide or the show Ribbon by using the
shortcut keys Ctrl + F1
Column Letters
◦ Letters range from A to XFD — one for each of the 16,384 columns in the worksheet. You can click a column heading
to select an entire column of cells or drag a column border to change its width
Row Numbers
◦ Numbers range from 1 to 1,048,576 — one for each row in the worksheet. You can
click a row number to select an entire row of cells.
Page View Buttons
Click these buttons to change the way the worksheet is displayed.
Sheet Tabs
Each of these notebook-like tabs represents a different sheet in the workbook. A workbook can have any number of
sheets, and each sheet has its name displayed in a sheet tab.
KEYBOARD SHORTCUTS AND
ACCESS KEYS
Access Keys
An access key is a letter or number that users select to access UI controls that have text labels.
Shortcut Keys
A key or combination of keys providing quick access to a particular function
FORMULAS AND FUNCTIONS
Formulas
A formula consists of special code entered into a cell. It performs a calculation of some type and returns a result that is
displayed in the cell. Formulas use a variety of operators and worksheet functions to work with values and text.
A formula always begins with an equal sign and can contain any of these elements:
■ Mathematical operators, such as + (for addition) and * (for multiplication)
Excel formulas support a variety of operators. Operators are symbols that indicate what mathematical (or
logical) operation you want the formula to perform. Table 10.1 lists the operators that Excel recognizes. In
addition to these, Excel has many built-in functions that enable you to perform additional calculations
■ Cell references (including named cells and ranges)
■ Values or text
■ Worksheet functions (such as SUM and AVERAGE)
Operators Used in Formulas
Operator Name
+ Addition
- Subtraction
* Multiplication
/ Division
^ Exponentiation
& Concatenation
= Logical comparison (equal to)
> Logical comparison (greater than)
< Logical comparison (less than)
>= Logical comparison (greater than or equal to)
<= Logical comparison (less than or equal to)
<> Logical comparison (not equal to)
Here are some examples of formulas that use various operators:
Excel follows a standard math protocol called "order of operations“, when evaluating a formula
=(B2-B3)*B4
If you enter the formula without the parentheses, Excel computes a different answer.
Because multiplication has a higher precedence, cell B3 is multiplied by cell B4. Then this
result is subtracted from cell B2, which isn’t what was intended.
The formula without parentheses looks like this:
=B2-B3*B4
Using functions in your formulas
Many formulas you create use worksheet functions. These functions enable you to greatly
enhance the power of your formulas and perform calculations that are difficult (or even
impossible) if you use only the operators discussed previously. For example, you can use the
TAN function to calculate the tangent of an angle. You can’t do this complicated calculation
by using the mathematical operators alone.
To calculate the average of the values in ten cells (A1:A10) without using a function, you’d have to construct a
formula like this:
=(B2+B3+B4+B5+B6+B7+B8+B9+B10+B11)/10
You can replace this formula with a much simpler one that uses one of Excel’s built-in worksheet functions,
AVERAGE:
=AVERAGE(B2:B11)
IF AND IFS FUNCTIONS
IF function
• IF function allows you to make logical comparisons between a value and what you expect.
• IF statement can have two results. The first result is if your comparison is True, the second if your
comparison is False.
=IF(logical_test,[value_if_true],[value_if_false])
For example, =IF(C2=”Yes”,1,2) says IF(C2 = Yes, then return a 1, otherwise return a 2).
IFS function
The IFS function checks whether one or more conditions are met, and returns a value that corresponds to the first
TRUE condition.
Sums the values in a range that meet criteria that you specify. For example, suppose that in a column that contains
numbers, you want to sum only the values that are larger than 10. You can use the following formula:
=SUMIF(A2:J2,">10")
You can apply the criteria to one range and sum the corresponding values in a different range. For example, the
formula =SUMIF(B2:B5, "John", C2:C5) sums only the values in the range C2:C5, where the corresponding
cells in the range B2:B5 equal "John."
SUMIFS function
Adds all of its arguments that meet multiple criteria. For example, you would use SUMIFS to sum the number of
retailers in the country who (1) reside in a single zip code and (2) whose profits exceed a specific dollar value.
Number1, number2, ... Number1 is optional, subsequent numbers are optional. 1 to 255 numbers for which you
want to find the minimum value.
MAX Function
Returns the largest value in a set of values.
Number1, number2, ... Number1 is required, subsequent numbers are optional. 1 to 255 numbers for which
you want to find the maximum value.