SlideShare una empresa de Scribd logo
1 de 37
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
excel 2010
Chapter 2Chapter 2
Using FormulasUsing Formulas
and Functionsand Functions
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel 2010 Using Formulas and FunctionsExcel 2010 Using Formulas and Functions
• Skill 2.1 Using Functions in
Formulas
• Skill 2.2 Using AutoSum to Insert
a SUM Function
• Skill 2.3 Creating Formulas
Using the AVERAGE Function
• Skill 2.4 Creating Formulas
Using Counting Functions
• Skill 2.5 Using Other Statistical
Functions
• Skill 2.6 Using Date and Time
Functions
• Skill 2.7 Using Absolute and
Relative References
• Skill 2.8 Naming Ranges of Cells
• Skill 2.9 Working with Named
Ranges
• Skill 2.10 Using Logical
Functions
• Skill 2.11 Calculating Loan
Payments Using the PMT
Function
• Skill 2.12 Finding Data Using the
VLOOKUP Function
• Skill 2.13 Creating Formulas
Referencing Data from Another
Worksheet
• Skill 2.14 Displaying and Printing
Formulas
• Skill 2.15 Checking Formulas for
Errors
2-2
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
• Functions are
preprogrammed shortcuts for
calculating complex equations
(like the monthly payment
amount for a loan).
• Most functions require you to
provide input called the
arguments.
Excel Skill 2.1Excel Skill 2.1
Using Functions in FormulasUsing Functions in Formulas
2-3
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Type the formula directly in
the cell or the formula bar.
2. Use Formula AutoComplete
by typing = and then a letter.
Formula AutoComplete
displays a list of potential
matches.
3. On the Formulas tab, select a
function from the Function
Library group, or click the
Insert Function button to
select a function from the
Insert Function dialog box.
4. Use AutoSum to insert
common functions (SUM,
AVERAGE, COUNT, MIN,
and MAX) with a single
mouse click.
Four Basic Ways to Add a Function to a FormulaFour Basic Ways to Add a Function to a Formula
2-4
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.2Excel Skill 2.2
Using AutoSum to Insert a SUM FunctionUsing AutoSum to Insert a SUM Function
• SUM function - used to add several cells together.
=SUM(A3:A6)
– The range A3:A6 tells Excel to add the values in all of
the cells between A3 and A6 ( A3 1 A4 1 A5 1 A6 ).
• Ways to Create a SUM Function
– Using the Function Arguments dialog box
– Using Formula AutoComplete
– Using the AutoSum button (much easier because Excel
enters the function arguments for you.)
2-5
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell in which you
want to enter the function.
2. On the Formulas tab, in the
Function Library group, or on
the Home tab, in the Editing
group, click the AutoSum
button.
3. Excel automatically inserts a
formula with the SUM
function, using the range of
cells contiguous to (next to)
the selected cell as the
arguments for the function.
You can increase or decrease
the range of cells selected by
clicking & dragging the corner
of the highlighted cell range.
4. Press Enter to accept the
formula.
To Insert a SUM Function Using AutoSumTo Insert a SUM Function Using AutoSum
2-6
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.3Excel Skill 2.3
Creating Formulas Using the AVERAGE FunctionCreating Formulas Using the AVERAGE Function
• AVERAGE function - used to calculate the average value
of a group of values.
=AVERAGE(A3:A6)
–The value of this formula is the average of the values of cells A3
through A6: (A3 + A4 + A5 + A6)/4.
–Average is calculated by adding the values, and then dividing the
sum by the number of values.
• To calculate the average of numbers in more than one
range of values, use a comma to separate arguments:
=AVERAGE(A3:A6,B3:B6)
–The value is the average of the values of cells A3 through A6 and B3
through B6: (A3+A4+A5+A6+B3+B4+B5+ B6)/8.
2-7
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell in which you
want to enter the function.
2. On the Formulas tab, in the
Function Library group, click
the AutoSum button arrow,
or on the Home tab, in the
Editing group, click the
AutoSum button arrow, and
then click Average.
3. Excel will automatically insert
a formula using the
AVERAGE function, using the
range of cells contiguous to
(next to) the selected cell as
the arguments for the
function. Press Enter to
accept the formula.
To Insert an AVERAGE Function Using AutoSumTo Insert an AVERAGE Function Using AutoSum
2-8
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.4Excel Skill 2.4
Creating Formulas Using Counting FunctionsCreating Formulas Using Counting Functions
• Counting functions are useful when you need to
know how many numbers or items are in a list, or
how many rows are missing data for a particular
column
• Three basic counting functions in Excel:
– COUNT —Counts the number of cells that contain
numbers within a specified range of cells.
– COUNTA —Counts the number of cells that are not
blank within a specified range of cells. Use COUNTA if
your cell range includes both numbers and text data.
– COUNTBLANK —Counts the number of blank cells
within a specified range of cells.
2-9
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Click in the cell where you want
the formula.
2. Type = COUNT to display the
Formula AutoComplete list of
functions that begin with “count”.
3. Double-click the function you
want to use.
4. Excel enters the beginning of
the formula in the cell. Click the
first cell in the range of cells you
want to use for your arguments,
and then drag and release the
mouse button when you reach
the last cell in the range.
5. Press Enter. Excel enters the
cell range as the function
arguments, and adds ) to the
end of the formula.
Use Formula AutoComplete to Enter Counting FunctionsUse Formula AutoComplete to Enter Counting Functions
2-10
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.5Excel Skill 2.5
Using Other Statistical FunctionsUsing Other Statistical Functions
• The MIN (minimum) statistical function will give
you the lowest value in a range of values.
= MIN(A3:A6)
• The MAX (maximum) statistical function will give
you the highest value in a range of values.
= MAX(A3:A6)
• To explore the wide variety of complex statistical
functions available in Excel:
–On the Formulas tab, in the Function Library group, click
the More Functions button and point to Statistical, or
open the Insert Function dialog box and select the
Statistical category.
2-11
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell in which you want
to enter the function.
2. On the Formulas tab, in the
Function Library group, click the
AutoSum button arrow, or on the
Home tab, in the Editing group,
click the AutoSum button arrow,
and then click Min to display the
smallest value or Max to display
the highest value.
3. Excel automatically inserts a
formula, using the range of cells
contiguous to (next to) the
selected cell as the arguments
for the function. Increase or
decrease the range of cells
selected by clicking and dragging
the corner of the highlighted cell
range.
4. Press Enter to accept the
formula.
To Use AutoSumTo Use AutoSum
2-12
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.6Excel Skill 2.6
Using Date and Time FunctionsUsing Date and Time Functions
• NOW function - inserts the current date and time.
= NOW()
• TODAY function - inserts only the current date.
= TODAY()
• Both functions are volatile —that is, they are not
constant.
• These functions do not require arguments.
2-13
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell where you
want the date and time to
appear.
2. On the Formulas tab, in the
Function Library group, click
the Date & Time button.
3. Click NOW.
4. When the Function
Arguments dialog box
appears, click OK.
5. If necessary, format the cell
to display both the date and
time.
To insert just the current date,
follow the same steps, but
select the TODAY function
instead.
To Insert the Current Date and TimeTo Insert the Current Date and Time
2-14
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.7Excel Skill 2.7
Using Absolute and Relative ReferencesUsing Absolute and Relative References
• A cell’s address, its position in the workbook, is referred to
as a cell reference when it is used in a formula.
• Cell references can be relative, absolute, or mixed.
– Relative reference - a cell reference that adjusts to the new
location in the worksheet when the formula is copied.
• Example: A1
– Absolute reference - a cell reference whose location remains
constant when the formula is copied.
• Example: $A$1
• The $ character before a letter or number in the cell address
means that part of the cell’s address is absolute (nonchanging).
– A mixed reference is a combination cell reference with a row
position that stays constant with a changing column position (or
vice versa).
• Example: $A1
2-15
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
• When you type a formula into a cell, it
uses relative references by default.
• Excel calculates the position of the
referenced cell relative to the active
cell.
• For example, if cell B17 is the active
cell and you type the formula = B16,
Excel displays the value of the cell that
is up one row from the active cell.
• If you add another row, shifting the
position of cell B17 to cell B18, Excel
adjusts the reference in the formula to
reflect the new cell address that is up
one row from the current position.
• If you copy the formula = B16 from cell
B17 and paste it into cell C17, the
pasted formula will update to = C16 to
reflect the cell address that is up one
row from the new position.
How Relative and Absolute References WorkHow Relative and Absolute References Work
2-16
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
• But what if you don’t want the cell
reference to adjust?
• For example, cell B13 contains a value
that you want to use in calculations for
multiple cells in a row.
• If you copy the formula =B13*B16 from
cell B17 to cell C17, the formula
updates to =C13*C16 (not what you
intended) because both of the cell
references are relative.
• The reference in cell B13 needs to be
absolute, so it doesn’t update when
copied.
• Use the formula =$B$13*B16 instead
and copy it from cell B17 to cell C17.
The pasted formula will only update the
relative reference (B16).
• The absolute reference ($B$13) will
remain constant. The formula in cell
C17 will be =$B$13*C16.
How Relative and Absolute References WorkHow Relative and Absolute References Work
2-17
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.8Excel Skill 2.8
Naming Ranges of CellsNaming Ranges of Cells
• Cell references like A4 and J34 do not provide much
information about what data the cell contains—they
just tell you where the cell is located in the worksheet.
• However, you can assign names to cells or ranges of
cells to give your cell references names that are more
user-friendly.
• These names (also called range names or named
ranges) act as a list of shortcuts to the cell locations.
2-18
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell or range of
cells to which you want to
assign a name.
2. Type the name in the Name
box to the left of the formula
bar.
3. Press Enter to apply the
name to the cell(s).
To Create a Named RangeTo Create a Named Range
2-19
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the range of cells you
want to name including the
row or column label.
2. On the Formulas tab, in the
Defined Names group, click
the Create from Selection
button .
3. In the Create Names from
Selection dialog box, click the
check box(es) to indicate
where the names are (top
row, left column, bottom row,
or right column).
4. Click OK.
Automatically Create Named Ranges Using LabelsAutomatically Create Named Ranges Using Labels
2-20
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.9Excel Skill 2.9
Working with Named RangesWorking with Named Ranges
• Rather than using a range of cells in your formulas, you can use a
named range. The name will always refer to the cells, even if their
position in the worksheet changes.
• Using named ranges in your formulas also makes it easier for others
to use your workbook. Which formula is easier to understand:
SUM(B5:B8) or SUM(JAN)?
• Formula AutoComplete lists named ranges as well as functions.
• Using the AutoComplete list is a good way to avoid typographical
errors and ensure that you enter the name correctly.
• When you copy and paste a formula containing a named range, the
name does not change with the new position in the workbook (similar
to using an absolute reference).
• If you move a named cell, the name updates with the new cell location
automatically.
2-21
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Click the cell where you want
to enter the new formula.
2. Type the formula, substituting
the range name for the cell
references.
3. Press Enter to accept the
formula.
To Use a Named Range in a FormulaTo Use a Named Range in a Formula
2-22
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Type an = sign to begin the
formula. As you type
alphabetical characters, Excel
will offer name suggestions.
2. When you find the name you
want, double-click it.
3. Excel inserts the name into
the formula.
To Use Formula AutoComplete with NamesTo Use Formula AutoComplete with Names
2-23
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.10Excel Skill 2.10
Using Logical FunctionsUsing Logical Functions
The logical functions group includes:
•IF — Returns one value if a condition is true and another
value if the condition is false.
•AND —Returns TRUE if the all of the arguments are true,
and FALSE if at least one of the arguments is not true.
•OR —Returns TRUE if at least one of the arguments is true,
and FALSE if all of the arguments are false.
•NOT —Returns TRUE if the argument is false, and FALSE if
the argument is true.
•IFERROR —Returns an error message or specified value if
the value of the referenced cell is an error; else it returns the
value of the referenced cell.
2-24
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell where you want to
enter the formula.
2. On the Formulas tab, in the
Function Library group, click the
Logical button.
3. Select IF from list of functions.
4. Enter Logical_test argument. This
argument states the condition to
test for. Use cell references and/or
values with logical operators.
5. Enter Value_if_true argument.
This is the text string or value
displayed if the Logical_test
argument is true.
6. Enter Value_if_ false argument.
This is the text string or value
displayed if the Logical_test
argument is false.
7. Click OK.
To Use the IF FunctionTo Use the IF Function
2-25
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.11Excel Skill 2.11
Calculating Loan Payments Using the PMT FunctionCalculating Loan Payments Using the PMT Function
• PMT (payment) function - use to calculate loan payments.
• PMT is based upon constant payments and a constant interest rate.
• Example formula to calculate payments for a $250,000 loan paid in
120 installments at 12 installments per year with an annual percentage
interest rate of 7%:
= PMT(7%/12,120,250000)
• Example formula using named ranges & cell references where
–Interest rate is stored in a cell named Interest_Rate,
–Total number of payments is stored in cell H7
–Amount of the loan is in a cell named Loan
= PMT(Interest_Rate/12,H7,Loan,0,0)
• The result of both of these formulas is –2,902.71.
• Because the result of the formula is a payment, it is expressed as a
negative number.
2-26
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select the cell where you want to
enter the formula.
2. On the Formulas tab, in the Function
Library group, click the Financial
button.
3. Select PMT from the list. Excel
displays the appropriate Function
Arguments dialog box.
4. In the Rate box, enter interest rate
divided by number of payments per
year. In the Nper box, enter total
number of payments over life of
loan.
5. In the Pv box, enter the present
value of the loan.
6. (Optional) In the Fv box, enter the
future value of the loan.
7. (Optional) In the Type box, enter 1 if
payment is at beginning of period.
8. Click OK to enter the formula.
To Use the PMT FunctionTo Use the PMT Function
2-27
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.12Excel Skill 2.12
Finding Data Using the VLOOKUP FunctionFinding Data Using the VLOOKUP Function
• Lookup and reference functions return values based on a cell’s
position in a table or array.
• Example: Use the VLOOKUP function to look up the part of a loan
payment that is applied to the principal of the loan by:
– returning the value of column 7 (the Principal column)
– within the range named Loan_Data (cells A20:I123),
– where the value in the first column of the data array (the PmtNo column) is
the value in cell D13:
= VLOOKUP(D13,LoanRange,7)
2-28
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Select cell to enter the formula in.
2. On the Formulas tab, in the Function
Library group, click Lookup &
Reference button.
3. Select VLOOKUP from list. Excel
displays the appropriate Function
Arguments dialog box.
4. In Lookup_value box, enter value in
first column to return a corresponding
value for.
5. In Table_array box, enter range of cells
for array (or table or range name).
6. In Col_index_num box, enter column
number from which function should
return matching value.
7. (optional) In Range_lookup box, enter
FALSE to find only an exact match for
value entered in Lookup_value box.
8. Click OK.
To Use the VLOOKUP FunctionTo Use the VLOOKUP Function
2-29
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.13Excel Skill 2.13
Creating Formulas Referencing Data from Another WorksheetCreating Formulas Referencing Data from Another Worksheet
• Cell references are not limited to cells within the same
worksheet.
• Reference cells in other worksheets in a workbook or other
workbooks. This is useful when creating summary sheets
or performing analysis on data from multiple sheets.
• For example, this formula will display the value of cell B3
from the Cash Flow worksheet:
= ‘Cash Flow’!B3
• If multiple workbooks are open, click a cell in another
workbook to create an external reference. The reference
will look like this:
= B17 + ‘[Four Year Profit Projections.xlsx]Salaries’!$D$6
2-30
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. Click the cell where you want
the formula.
2. Type an equal sign ( = ).
3. Navigate to the cell you want
to reference by clicking the
sheet tab and then clicking
the cell.
4. Press Enter to complete the
formula.
To Include a Reference to a Cell From Another SheetTo Include a Reference to a Cell From Another Sheet
2-31
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.14Excel Skill 2.14
Displaying and Printing FormulasDisplaying and Printing Formulas
• How do you troubleshoot a worksheet that is
displaying unexpected values?
• When you look at a worksheet, you see only the
results of formulas—cells display the values, not the
formulas themselves.
• When you click a cell, the formula is displayed in the
formula bar. But what if you want to view all of the
formulas in your worksheet at once?
– To display the formulas in the current worksheet instead
of values, on the Formulas tab in the Formula Auditing
group, click the Show Formulas button.
2-32
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. First display the formulas in
the worksheet by clicking the
Show Formulas button.
2. Next, print the worksheet:
a. Click the File tab.
b. Click Print.
c. At the right side of the
page is a preview of how
the printed file will look.
Adjust the print settings if
necessary.
d. Click the Print button to
send the file to your
default printer.
To Print a Copy of the Worksheet with FormulasTo Print a Copy of the Worksheet with Formulas
2-33
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel Skill 2.15Excel Skill 2.15
Checking Formulas for ErrorsChecking Formulas for Errors
• Some worksheet errors are easily identifiable—such as
divide by zero errors: #DIV/0! (Excel cannot calculate a
value to display).
• Other potential errors, like formulas that leave out part of a
cell range, are harder to find.
• Use Excel’s Error Checking function to review a worksheet
for errors.
– The Error Checking dialog box displays each error it finds,
allowing you to resolve or ignore each error in turn.
– If Excel is able to offer a solution to the error, the dialog box
will include a button to accept the suggested fix.
• Click Help on this error button to open Microsoft Office Help.
• Click Ignore Error to dismiss error.
• Click Edit in Formula Bar to fix the error manually.
2-34
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. On the Formulas tab in the
Formula Auditing group, click
the Error Checking button.
2. The Error Checking dialog
box displays information
about the first error. The
buttons available in the dialog
box will differ, depending on
the type of error found.
3. Click the Next button to see
the next error in your
worksheet.
4. When you have reviewed all
errors, Excel displays a
message that the error check
is complete. Click OK to
dismiss the message box.
To Use Error Checking to Find Errors in WorksheetTo Use Error Checking to Find Errors in Worksheet
2-35
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
1. When a Smart Tag appears, move
mouse over icon to display a ToolTip
describing possible error.
2. Click Smart Tag arrow to display
possible error resolutions.
3. To keep formula as it is, select Ignore
Error.
4. To resolve error, select an option:
1. The first option is usually a suggestion
of how to resolve error. Click to
accept Excel’s suggestion.
2. Select Help on this error to open
Microsoft Office Help.
3. Select Edit in Formula Bar to
manually edit the formula.
4. Select Error Checking Options. . . to
open Options dialog box and modify
the way Excel checks for errors.
5. After making selection from Smart Tag
options, the Smart Tag is dismissed.
To Use Smart Tags to Resolve Errors in FormulasTo Use Smart Tags to Resolve Errors in Formulas
2-36
askillsapproach
© 2012 The McGraw-Hill Companies, Inc. All rights reserved.
Excel 2010 Using Formulas and Functions RecapExcel 2010 Using Formulas and Functions Recap
• Skill 2.1 Using Functions in
Formulas
• Skill 2.2 Using AutoSum to Insert a
SUM Function
• Skill 2.3 Creating Formulas Using
the AVERAGE Function
• Skill 2.4 Creating Formulas Using
Counting Functions
• Skill 2.5 Using Other Statistical
Functions
• Skill 2.6 Using Date and Time
Functions
• Skill 2.7 Using Absolute and Relative
References
• Skill 2.8 Naming Ranges of Cells
• Skill 2.9 Working with Named
Ranges
• Skill 2.10 Using Logical Functions
• Skill 2.11 Calculating Loan
Payments Using the PMT Function
• Skill 2.12 Finding Data Using the
VLOOKUP Function
• Skill 2.13 Creating Formulas
Referencing Data from Another
Worksheet
• Skill 2.14 Displaying and Printing
Formulas
• Skill 2.15 Checking Formulas for
Errors
2-37

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Chapter.02
Chapter.02Chapter.02
Chapter.02
 
Chapter.03
Chapter.03Chapter.03
Chapter.03
 
Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginners
 
Excel ppt
Excel pptExcel ppt
Excel ppt
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Excel 2007 Unit B
Excel 2007 Unit BExcel 2007 Unit B
Excel 2007 Unit B
 
Microsoft Excel
Microsoft ExcelMicrosoft Excel
Microsoft Excel
 
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesE-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
 
Spreadsheet new
Spreadsheet newSpreadsheet new
Spreadsheet new
 
Excel 2010 Unit B PPT
Excel 2010 Unit B PPTExcel 2010 Unit B PPT
Excel 2010 Unit B PPT
 
Exp2003 exl ppt_02
Exp2003 exl ppt_02Exp2003 exl ppt_02
Exp2003 exl ppt_02
 
Lesson 4 Advanced Spreadsheet Skills/Post-Test
Lesson 4 Advanced Spreadsheet Skills/Post-TestLesson 4 Advanced Spreadsheet Skills/Post-Test
Lesson 4 Advanced Spreadsheet Skills/Post-Test
 
Exp2003 exl ppt_03
Exp2003 exl ppt_03Exp2003 exl ppt_03
Exp2003 exl ppt_03
 
Exp2003 exl ppt_02-continued
Exp2003 exl ppt_02-continuedExp2003 exl ppt_02-continued
Exp2003 exl ppt_02-continued
 
08 ms excel
08 ms excel08 ms excel
08 ms excel
 
L4 advanced spreadsheet skills
L4 advanced spreadsheet skillsL4 advanced spreadsheet skills
L4 advanced spreadsheet skills
 
BP208 Fabulous Feats with @Formula
BP208 Fabulous Feats with @FormulaBP208 Fabulous Feats with @Formula
BP208 Fabulous Feats with @Formula
 
Microsoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And FilteringMicrosoft Office Excel 2003 Sorting And Filtering
Microsoft Office Excel 2003 Sorting And Filtering
 
Microsoft excel beginner
Microsoft excel beginnerMicrosoft excel beginner
Microsoft excel beginner
 

Similar a Triad 2010 excel_chapter_2

MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsP. SUNDARI ARUN
 
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)Patrice Dowtin, MS, MBA
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excelMalika khalil
 
Using formula and function
Using formula and functionUsing formula and function
Using formula and functionRachel Espino
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
Excel.fns frmls
Excel.fns frmlsExcel.fns frmls
Excel.fns frmlsrowenick
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxEdwinAdeolaOluwasina1
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functionsricsanmae
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basicsjeshin jose
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdfFranzLawrenzDeTorres1
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialSpreadsheetTrainer
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxvanshikatyagi74
 
Advanced Spreadsheet.pptx
Advanced Spreadsheet.pptxAdvanced Spreadsheet.pptx
Advanced Spreadsheet.pptxMargieBAlmoza
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excelmadhuparna bhowmik
 

Similar a Triad 2010 excel_chapter_2 (20)

Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and Functions
 
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
Using formula and function
Using formula and functionUsing formula and function
Using formula and function
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
Excel.fns frmls
Excel.fns frmlsExcel.fns frmls
Excel.fns frmls
 
Excel functions
Excel functionsExcel functions
Excel functions
 
Print9
Print9Print9
Print9
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptx
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functions
 
G10 Unit 4.pptx
G10 Unit 4.pptxG10 Unit 4.pptx
G10 Unit 4.pptx
 
Excel11
Excel11Excel11
Excel11
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basics
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
 
Microsoft Excel Training
Microsoft Excel TrainingMicrosoft Excel Training
Microsoft Excel Training
 
Advanced Spreadsheet.pptx
Advanced Spreadsheet.pptxAdvanced Spreadsheet.pptx
Advanced Spreadsheet.pptx
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 

Más de Dalia Saeed

Concepts of information technology
Concepts of information technologyConcepts of information technology
Concepts of information technologyDalia Saeed
 
O leary2012 comp_ppt_ch08
O leary2012 comp_ppt_ch08O leary2012 comp_ppt_ch08
O leary2012 comp_ppt_ch08Dalia Saeed
 
O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07Dalia Saeed
 
O leary2012 comp_ppt_ch05
O leary2012 comp_ppt_ch05O leary2012 comp_ppt_ch05
O leary2012 comp_ppt_ch05Dalia Saeed
 
Triad 2010 word_chapter_5
Triad 2010 word_chapter_5Triad 2010 word_chapter_5
Triad 2010 word_chapter_5Dalia Saeed
 
Triad 2010 word_chapter_4
Triad 2010 word_chapter_4Triad 2010 word_chapter_4
Triad 2010 word_chapter_4Dalia Saeed
 
Triad 2010 power_point_chapter_4
Triad 2010 power_point_chapter_4Triad 2010 power_point_chapter_4
Triad 2010 power_point_chapter_4Dalia Saeed
 
Triad 2010 power_point_chapter_3
Triad 2010 power_point_chapter_3Triad 2010 power_point_chapter_3
Triad 2010 power_point_chapter_3Dalia Saeed
 
Triad 2010 power_point_chapter_2
Triad 2010 power_point_chapter_2Triad 2010 power_point_chapter_2
Triad 2010 power_point_chapter_2Dalia Saeed
 
Triad 2010 power_point_chapter_1
Triad 2010 power_point_chapter_1Triad 2010 power_point_chapter_1
Triad 2010 power_point_chapter_1Dalia Saeed
 
Triad 2010 office
Triad 2010 officeTriad 2010 office
Triad 2010 officeDalia Saeed
 
Triad 2010 excel_chapter_4
Triad 2010 excel_chapter_4Triad 2010 excel_chapter_4
Triad 2010 excel_chapter_4Dalia Saeed
 
Triad 2010 excel_chapter_3
Triad 2010 excel_chapter_3Triad 2010 excel_chapter_3
Triad 2010 excel_chapter_3Dalia Saeed
 
Triad 2010 word_chapter_3
Triad 2010 word_chapter_3Triad 2010 word_chapter_3
Triad 2010 word_chapter_3Dalia Saeed
 
Triad 2010 word_chapter_2
Triad 2010 word_chapter_2Triad 2010 word_chapter_2
Triad 2010 word_chapter_2Dalia Saeed
 

Más de Dalia Saeed (20)

Power point1
Power point1Power point1
Power point1
 
Concepts of information technology
Concepts of information technologyConcepts of information technology
Concepts of information technology
 
Windows vista
Windows vistaWindows vista
Windows vista
 
Windows 7
Windows 7Windows 7
Windows 7
 
Excel1
Excel1Excel1
Excel1
 
Word1
Word1Word1
Word1
 
O leary2012 comp_ppt_ch08
O leary2012 comp_ppt_ch08O leary2012 comp_ppt_ch08
O leary2012 comp_ppt_ch08
 
O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07O leary2012 comp_ppt_ch07
O leary2012 comp_ppt_ch07
 
O leary2012 comp_ppt_ch05
O leary2012 comp_ppt_ch05O leary2012 comp_ppt_ch05
O leary2012 comp_ppt_ch05
 
Triad 2010 word_chapter_5
Triad 2010 word_chapter_5Triad 2010 word_chapter_5
Triad 2010 word_chapter_5
 
Triad 2010 word_chapter_4
Triad 2010 word_chapter_4Triad 2010 word_chapter_4
Triad 2010 word_chapter_4
 
Triad 2010 power_point_chapter_4
Triad 2010 power_point_chapter_4Triad 2010 power_point_chapter_4
Triad 2010 power_point_chapter_4
 
Triad 2010 power_point_chapter_3
Triad 2010 power_point_chapter_3Triad 2010 power_point_chapter_3
Triad 2010 power_point_chapter_3
 
Triad 2010 power_point_chapter_2
Triad 2010 power_point_chapter_2Triad 2010 power_point_chapter_2
Triad 2010 power_point_chapter_2
 
Triad 2010 power_point_chapter_1
Triad 2010 power_point_chapter_1Triad 2010 power_point_chapter_1
Triad 2010 power_point_chapter_1
 
Triad 2010 office
Triad 2010 officeTriad 2010 office
Triad 2010 office
 
Triad 2010 excel_chapter_4
Triad 2010 excel_chapter_4Triad 2010 excel_chapter_4
Triad 2010 excel_chapter_4
 
Triad 2010 excel_chapter_3
Triad 2010 excel_chapter_3Triad 2010 excel_chapter_3
Triad 2010 excel_chapter_3
 
Triad 2010 word_chapter_3
Triad 2010 word_chapter_3Triad 2010 word_chapter_3
Triad 2010 word_chapter_3
 
Triad 2010 word_chapter_2
Triad 2010 word_chapter_2Triad 2010 word_chapter_2
Triad 2010 word_chapter_2
 

Último

How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 

Último (20)

How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 

Triad 2010 excel_chapter_2

  • 1. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. excel 2010 Chapter 2Chapter 2 Using FormulasUsing Formulas and Functionsand Functions
  • 2. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel 2010 Using Formulas and FunctionsExcel 2010 Using Formulas and Functions • Skill 2.1 Using Functions in Formulas • Skill 2.2 Using AutoSum to Insert a SUM Function • Skill 2.3 Creating Formulas Using the AVERAGE Function • Skill 2.4 Creating Formulas Using Counting Functions • Skill 2.5 Using Other Statistical Functions • Skill 2.6 Using Date and Time Functions • Skill 2.7 Using Absolute and Relative References • Skill 2.8 Naming Ranges of Cells • Skill 2.9 Working with Named Ranges • Skill 2.10 Using Logical Functions • Skill 2.11 Calculating Loan Payments Using the PMT Function • Skill 2.12 Finding Data Using the VLOOKUP Function • Skill 2.13 Creating Formulas Referencing Data from Another Worksheet • Skill 2.14 Displaying and Printing Formulas • Skill 2.15 Checking Formulas for Errors 2-2
  • 3. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. • Functions are preprogrammed shortcuts for calculating complex equations (like the monthly payment amount for a loan). • Most functions require you to provide input called the arguments. Excel Skill 2.1Excel Skill 2.1 Using Functions in FormulasUsing Functions in Formulas 2-3
  • 4. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Type the formula directly in the cell or the formula bar. 2. Use Formula AutoComplete by typing = and then a letter. Formula AutoComplete displays a list of potential matches. 3. On the Formulas tab, select a function from the Function Library group, or click the Insert Function button to select a function from the Insert Function dialog box. 4. Use AutoSum to insert common functions (SUM, AVERAGE, COUNT, MIN, and MAX) with a single mouse click. Four Basic Ways to Add a Function to a FormulaFour Basic Ways to Add a Function to a Formula 2-4
  • 5. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.2Excel Skill 2.2 Using AutoSum to Insert a SUM FunctionUsing AutoSum to Insert a SUM Function • SUM function - used to add several cells together. =SUM(A3:A6) – The range A3:A6 tells Excel to add the values in all of the cells between A3 and A6 ( A3 1 A4 1 A5 1 A6 ). • Ways to Create a SUM Function – Using the Function Arguments dialog box – Using Formula AutoComplete – Using the AutoSum button (much easier because Excel enters the function arguments for you.) 2-5
  • 6. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell in which you want to enter the function. 2. On the Formulas tab, in the Function Library group, or on the Home tab, in the Editing group, click the AutoSum button. 3. Excel automatically inserts a formula with the SUM function, using the range of cells contiguous to (next to) the selected cell as the arguments for the function. You can increase or decrease the range of cells selected by clicking & dragging the corner of the highlighted cell range. 4. Press Enter to accept the formula. To Insert a SUM Function Using AutoSumTo Insert a SUM Function Using AutoSum 2-6
  • 7. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.3Excel Skill 2.3 Creating Formulas Using the AVERAGE FunctionCreating Formulas Using the AVERAGE Function • AVERAGE function - used to calculate the average value of a group of values. =AVERAGE(A3:A6) –The value of this formula is the average of the values of cells A3 through A6: (A3 + A4 + A5 + A6)/4. –Average is calculated by adding the values, and then dividing the sum by the number of values. • To calculate the average of numbers in more than one range of values, use a comma to separate arguments: =AVERAGE(A3:A6,B3:B6) –The value is the average of the values of cells A3 through A6 and B3 through B6: (A3+A4+A5+A6+B3+B4+B5+ B6)/8. 2-7
  • 8. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell in which you want to enter the function. 2. On the Formulas tab, in the Function Library group, click the AutoSum button arrow, or on the Home tab, in the Editing group, click the AutoSum button arrow, and then click Average. 3. Excel will automatically insert a formula using the AVERAGE function, using the range of cells contiguous to (next to) the selected cell as the arguments for the function. Press Enter to accept the formula. To Insert an AVERAGE Function Using AutoSumTo Insert an AVERAGE Function Using AutoSum 2-8
  • 9. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.4Excel Skill 2.4 Creating Formulas Using Counting FunctionsCreating Formulas Using Counting Functions • Counting functions are useful when you need to know how many numbers or items are in a list, or how many rows are missing data for a particular column • Three basic counting functions in Excel: – COUNT —Counts the number of cells that contain numbers within a specified range of cells. – COUNTA —Counts the number of cells that are not blank within a specified range of cells. Use COUNTA if your cell range includes both numbers and text data. – COUNTBLANK —Counts the number of blank cells within a specified range of cells. 2-9
  • 10. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Click in the cell where you want the formula. 2. Type = COUNT to display the Formula AutoComplete list of functions that begin with “count”. 3. Double-click the function you want to use. 4. Excel enters the beginning of the formula in the cell. Click the first cell in the range of cells you want to use for your arguments, and then drag and release the mouse button when you reach the last cell in the range. 5. Press Enter. Excel enters the cell range as the function arguments, and adds ) to the end of the formula. Use Formula AutoComplete to Enter Counting FunctionsUse Formula AutoComplete to Enter Counting Functions 2-10
  • 11. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.5Excel Skill 2.5 Using Other Statistical FunctionsUsing Other Statistical Functions • The MIN (minimum) statistical function will give you the lowest value in a range of values. = MIN(A3:A6) • The MAX (maximum) statistical function will give you the highest value in a range of values. = MAX(A3:A6) • To explore the wide variety of complex statistical functions available in Excel: –On the Formulas tab, in the Function Library group, click the More Functions button and point to Statistical, or open the Insert Function dialog box and select the Statistical category. 2-11
  • 12. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell in which you want to enter the function. 2. On the Formulas tab, in the Function Library group, click the AutoSum button arrow, or on the Home tab, in the Editing group, click the AutoSum button arrow, and then click Min to display the smallest value or Max to display the highest value. 3. Excel automatically inserts a formula, using the range of cells contiguous to (next to) the selected cell as the arguments for the function. Increase or decrease the range of cells selected by clicking and dragging the corner of the highlighted cell range. 4. Press Enter to accept the formula. To Use AutoSumTo Use AutoSum 2-12
  • 13. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.6Excel Skill 2.6 Using Date and Time FunctionsUsing Date and Time Functions • NOW function - inserts the current date and time. = NOW() • TODAY function - inserts only the current date. = TODAY() • Both functions are volatile —that is, they are not constant. • These functions do not require arguments. 2-13
  • 14. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell where you want the date and time to appear. 2. On the Formulas tab, in the Function Library group, click the Date & Time button. 3. Click NOW. 4. When the Function Arguments dialog box appears, click OK. 5. If necessary, format the cell to display both the date and time. To insert just the current date, follow the same steps, but select the TODAY function instead. To Insert the Current Date and TimeTo Insert the Current Date and Time 2-14
  • 15. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.7Excel Skill 2.7 Using Absolute and Relative ReferencesUsing Absolute and Relative References • A cell’s address, its position in the workbook, is referred to as a cell reference when it is used in a formula. • Cell references can be relative, absolute, or mixed. – Relative reference - a cell reference that adjusts to the new location in the worksheet when the formula is copied. • Example: A1 – Absolute reference - a cell reference whose location remains constant when the formula is copied. • Example: $A$1 • The $ character before a letter or number in the cell address means that part of the cell’s address is absolute (nonchanging). – A mixed reference is a combination cell reference with a row position that stays constant with a changing column position (or vice versa). • Example: $A1 2-15
  • 16. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. • When you type a formula into a cell, it uses relative references by default. • Excel calculates the position of the referenced cell relative to the active cell. • For example, if cell B17 is the active cell and you type the formula = B16, Excel displays the value of the cell that is up one row from the active cell. • If you add another row, shifting the position of cell B17 to cell B18, Excel adjusts the reference in the formula to reflect the new cell address that is up one row from the current position. • If you copy the formula = B16 from cell B17 and paste it into cell C17, the pasted formula will update to = C16 to reflect the cell address that is up one row from the new position. How Relative and Absolute References WorkHow Relative and Absolute References Work 2-16
  • 17. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. • But what if you don’t want the cell reference to adjust? • For example, cell B13 contains a value that you want to use in calculations for multiple cells in a row. • If you copy the formula =B13*B16 from cell B17 to cell C17, the formula updates to =C13*C16 (not what you intended) because both of the cell references are relative. • The reference in cell B13 needs to be absolute, so it doesn’t update when copied. • Use the formula =$B$13*B16 instead and copy it from cell B17 to cell C17. The pasted formula will only update the relative reference (B16). • The absolute reference ($B$13) will remain constant. The formula in cell C17 will be =$B$13*C16. How Relative and Absolute References WorkHow Relative and Absolute References Work 2-17
  • 18. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.8Excel Skill 2.8 Naming Ranges of CellsNaming Ranges of Cells • Cell references like A4 and J34 do not provide much information about what data the cell contains—they just tell you where the cell is located in the worksheet. • However, you can assign names to cells or ranges of cells to give your cell references names that are more user-friendly. • These names (also called range names or named ranges) act as a list of shortcuts to the cell locations. 2-18
  • 19. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell or range of cells to which you want to assign a name. 2. Type the name in the Name box to the left of the formula bar. 3. Press Enter to apply the name to the cell(s). To Create a Named RangeTo Create a Named Range 2-19
  • 20. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the range of cells you want to name including the row or column label. 2. On the Formulas tab, in the Defined Names group, click the Create from Selection button . 3. In the Create Names from Selection dialog box, click the check box(es) to indicate where the names are (top row, left column, bottom row, or right column). 4. Click OK. Automatically Create Named Ranges Using LabelsAutomatically Create Named Ranges Using Labels 2-20
  • 21. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.9Excel Skill 2.9 Working with Named RangesWorking with Named Ranges • Rather than using a range of cells in your formulas, you can use a named range. The name will always refer to the cells, even if their position in the worksheet changes. • Using named ranges in your formulas also makes it easier for others to use your workbook. Which formula is easier to understand: SUM(B5:B8) or SUM(JAN)? • Formula AutoComplete lists named ranges as well as functions. • Using the AutoComplete list is a good way to avoid typographical errors and ensure that you enter the name correctly. • When you copy and paste a formula containing a named range, the name does not change with the new position in the workbook (similar to using an absolute reference). • If you move a named cell, the name updates with the new cell location automatically. 2-21
  • 22. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Click the cell where you want to enter the new formula. 2. Type the formula, substituting the range name for the cell references. 3. Press Enter to accept the formula. To Use a Named Range in a FormulaTo Use a Named Range in a Formula 2-22
  • 23. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Type an = sign to begin the formula. As you type alphabetical characters, Excel will offer name suggestions. 2. When you find the name you want, double-click it. 3. Excel inserts the name into the formula. To Use Formula AutoComplete with NamesTo Use Formula AutoComplete with Names 2-23
  • 24. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.10Excel Skill 2.10 Using Logical FunctionsUsing Logical Functions The logical functions group includes: •IF — Returns one value if a condition is true and another value if the condition is false. •AND —Returns TRUE if the all of the arguments are true, and FALSE if at least one of the arguments is not true. •OR —Returns TRUE if at least one of the arguments is true, and FALSE if all of the arguments are false. •NOT —Returns TRUE if the argument is false, and FALSE if the argument is true. •IFERROR —Returns an error message or specified value if the value of the referenced cell is an error; else it returns the value of the referenced cell. 2-24
  • 25. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell where you want to enter the formula. 2. On the Formulas tab, in the Function Library group, click the Logical button. 3. Select IF from list of functions. 4. Enter Logical_test argument. This argument states the condition to test for. Use cell references and/or values with logical operators. 5. Enter Value_if_true argument. This is the text string or value displayed if the Logical_test argument is true. 6. Enter Value_if_ false argument. This is the text string or value displayed if the Logical_test argument is false. 7. Click OK. To Use the IF FunctionTo Use the IF Function 2-25
  • 26. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.11Excel Skill 2.11 Calculating Loan Payments Using the PMT FunctionCalculating Loan Payments Using the PMT Function • PMT (payment) function - use to calculate loan payments. • PMT is based upon constant payments and a constant interest rate. • Example formula to calculate payments for a $250,000 loan paid in 120 installments at 12 installments per year with an annual percentage interest rate of 7%: = PMT(7%/12,120,250000) • Example formula using named ranges & cell references where –Interest rate is stored in a cell named Interest_Rate, –Total number of payments is stored in cell H7 –Amount of the loan is in a cell named Loan = PMT(Interest_Rate/12,H7,Loan,0,0) • The result of both of these formulas is –2,902.71. • Because the result of the formula is a payment, it is expressed as a negative number. 2-26
  • 27. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select the cell where you want to enter the formula. 2. On the Formulas tab, in the Function Library group, click the Financial button. 3. Select PMT from the list. Excel displays the appropriate Function Arguments dialog box. 4. In the Rate box, enter interest rate divided by number of payments per year. In the Nper box, enter total number of payments over life of loan. 5. In the Pv box, enter the present value of the loan. 6. (Optional) In the Fv box, enter the future value of the loan. 7. (Optional) In the Type box, enter 1 if payment is at beginning of period. 8. Click OK to enter the formula. To Use the PMT FunctionTo Use the PMT Function 2-27
  • 28. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.12Excel Skill 2.12 Finding Data Using the VLOOKUP FunctionFinding Data Using the VLOOKUP Function • Lookup and reference functions return values based on a cell’s position in a table or array. • Example: Use the VLOOKUP function to look up the part of a loan payment that is applied to the principal of the loan by: – returning the value of column 7 (the Principal column) – within the range named Loan_Data (cells A20:I123), – where the value in the first column of the data array (the PmtNo column) is the value in cell D13: = VLOOKUP(D13,LoanRange,7) 2-28
  • 29. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Select cell to enter the formula in. 2. On the Formulas tab, in the Function Library group, click Lookup & Reference button. 3. Select VLOOKUP from list. Excel displays the appropriate Function Arguments dialog box. 4. In Lookup_value box, enter value in first column to return a corresponding value for. 5. In Table_array box, enter range of cells for array (or table or range name). 6. In Col_index_num box, enter column number from which function should return matching value. 7. (optional) In Range_lookup box, enter FALSE to find only an exact match for value entered in Lookup_value box. 8. Click OK. To Use the VLOOKUP FunctionTo Use the VLOOKUP Function 2-29
  • 30. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.13Excel Skill 2.13 Creating Formulas Referencing Data from Another WorksheetCreating Formulas Referencing Data from Another Worksheet • Cell references are not limited to cells within the same worksheet. • Reference cells in other worksheets in a workbook or other workbooks. This is useful when creating summary sheets or performing analysis on data from multiple sheets. • For example, this formula will display the value of cell B3 from the Cash Flow worksheet: = ‘Cash Flow’!B3 • If multiple workbooks are open, click a cell in another workbook to create an external reference. The reference will look like this: = B17 + ‘[Four Year Profit Projections.xlsx]Salaries’!$D$6 2-30
  • 31. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. Click the cell where you want the formula. 2. Type an equal sign ( = ). 3. Navigate to the cell you want to reference by clicking the sheet tab and then clicking the cell. 4. Press Enter to complete the formula. To Include a Reference to a Cell From Another SheetTo Include a Reference to a Cell From Another Sheet 2-31
  • 32. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.14Excel Skill 2.14 Displaying and Printing FormulasDisplaying and Printing Formulas • How do you troubleshoot a worksheet that is displaying unexpected values? • When you look at a worksheet, you see only the results of formulas—cells display the values, not the formulas themselves. • When you click a cell, the formula is displayed in the formula bar. But what if you want to view all of the formulas in your worksheet at once? – To display the formulas in the current worksheet instead of values, on the Formulas tab in the Formula Auditing group, click the Show Formulas button. 2-32
  • 33. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. First display the formulas in the worksheet by clicking the Show Formulas button. 2. Next, print the worksheet: a. Click the File tab. b. Click Print. c. At the right side of the page is a preview of how the printed file will look. Adjust the print settings if necessary. d. Click the Print button to send the file to your default printer. To Print a Copy of the Worksheet with FormulasTo Print a Copy of the Worksheet with Formulas 2-33
  • 34. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel Skill 2.15Excel Skill 2.15 Checking Formulas for ErrorsChecking Formulas for Errors • Some worksheet errors are easily identifiable—such as divide by zero errors: #DIV/0! (Excel cannot calculate a value to display). • Other potential errors, like formulas that leave out part of a cell range, are harder to find. • Use Excel’s Error Checking function to review a worksheet for errors. – The Error Checking dialog box displays each error it finds, allowing you to resolve or ignore each error in turn. – If Excel is able to offer a solution to the error, the dialog box will include a button to accept the suggested fix. • Click Help on this error button to open Microsoft Office Help. • Click Ignore Error to dismiss error. • Click Edit in Formula Bar to fix the error manually. 2-34
  • 35. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. On the Formulas tab in the Formula Auditing group, click the Error Checking button. 2. The Error Checking dialog box displays information about the first error. The buttons available in the dialog box will differ, depending on the type of error found. 3. Click the Next button to see the next error in your worksheet. 4. When you have reviewed all errors, Excel displays a message that the error check is complete. Click OK to dismiss the message box. To Use Error Checking to Find Errors in WorksheetTo Use Error Checking to Find Errors in Worksheet 2-35
  • 36. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. 1. When a Smart Tag appears, move mouse over icon to display a ToolTip describing possible error. 2. Click Smart Tag arrow to display possible error resolutions. 3. To keep formula as it is, select Ignore Error. 4. To resolve error, select an option: 1. The first option is usually a suggestion of how to resolve error. Click to accept Excel’s suggestion. 2. Select Help on this error to open Microsoft Office Help. 3. Select Edit in Formula Bar to manually edit the formula. 4. Select Error Checking Options. . . to open Options dialog box and modify the way Excel checks for errors. 5. After making selection from Smart Tag options, the Smart Tag is dismissed. To Use Smart Tags to Resolve Errors in FormulasTo Use Smart Tags to Resolve Errors in Formulas 2-36
  • 37. askillsapproach © 2012 The McGraw-Hill Companies, Inc. All rights reserved. Excel 2010 Using Formulas and Functions RecapExcel 2010 Using Formulas and Functions Recap • Skill 2.1 Using Functions in Formulas • Skill 2.2 Using AutoSum to Insert a SUM Function • Skill 2.3 Creating Formulas Using the AVERAGE Function • Skill 2.4 Creating Formulas Using Counting Functions • Skill 2.5 Using Other Statistical Functions • Skill 2.6 Using Date and Time Functions • Skill 2.7 Using Absolute and Relative References • Skill 2.8 Naming Ranges of Cells • Skill 2.9 Working with Named Ranges • Skill 2.10 Using Logical Functions • Skill 2.11 Calculating Loan Payments Using the PMT Function • Skill 2.12 Finding Data Using the VLOOKUP Function • Skill 2.13 Creating Formulas Referencing Data from Another Worksheet • Skill 2.14 Displaying and Printing Formulas • Skill 2.15 Checking Formulas for Errors 2-37

Notas del editor

  1. Excel Skills Page: EX-40 It is time to go beyond simple formulas. In this chapter you will learn to use the functions built into Excel to compute statistics, work with date and time numbers, compute loan payments, and perform table look ups. Also you will create formulas that reference named ranges and other worksheets and formulas designed for fast replication.
  2. Excel Skill 2.1 Using Functions in Formulas Page: EX-41; Figures EX 2.1 and EX 2.2 For example, when writing a formula using the PMT function to calculate a loan payment, the arguments include the interest rate, the number of payments, the amount of the loan at the beginning of the loan period, the amount of the loan left at the end of the loan period, and whether the loan payments will be made at the beginning or end of each payment period. tips & tricks - When you use Formula AutoComplete, you can click the function name in the ScreenTip to open the Excel help topic for that function. If you’re not sure of the name of the function you want, open the Insert Function dialog box and type keywords describing the function in the Search for a function: box, and then click the Go button. The Or select a category: box changes to Recommended, and the Select a function: box now displays a list of functions that match the keywords you typed. try this - The Name box to the left of the formula bar normally displays the cell address or name. However, when you begin a formula by typing = , the Name box displays the name of the most recently used function. Click the arrow at the right side of the box to see a list of all the most recently used functions. Click any function name to open the Function Arguments dialog box, or click More Functions . . . at the bottom of the list to open the Insert Function dialog box.
  3. Excel Skill 2.1 Using Functions in Formulas Page: EX-41; Figures EX 2.3 and EX 2.4 There are four basic ways to add a function to a formula: Type the formula directly in the cell or the formula bar. Begin the formula by typing = , and then type the function name. After the function name, type ( followed by the function arguments, separated by commas, and then ) . Press Enter to complete the formula. Use Formula AutoComplete . When you type = and then a letter, Formula AutoComplete displays a list of potential matches (functions and other valid reference names). Type more letters to shorten the Formula AutoComplete list. Double-click a function name to enter it in your formula. Enter the expected arguments by typing values or selecting a cell or cell range. Press Enter to complete the formula. On the Formulas tab, select a function from the Function Library group, or click the Insert Function button to select a function from the Insert Function dialog box. You can also click the Insert Function button to the left of the formula bar. On the Formulas tab, select a function from the Function Library group, or click the Insert Function button to select a function from the Insert Function dialog box. You can also click the Insert Function button to the left of the formula bar. Functions are organized into categories such as Financial and Statistical. If necessary, expand the Or select a category: list and select the category you want. The category list will default to whatever category you used last, or it will show Most Recently Used. Click a function in the Select a function: box to see a brief description of what it does and the arguments it takes. Click OK to open the Function Arguments dialog box. (This dialog box is different for each function.) Enter values in each of the argument boxes by typing or clicking outside the dialog box and selecting the cell or cell range. As you click each argument box, a brief description of the argument appears near the bottom of the dialog box. When you are finished entering arguments, click OK. Use AutoSum . The AutoSum button allows you to insert common functions (SUM, AVERAGE, COUNT, MIN, and MAX) with a single mouse click. It is available from both the Home tab and the Formulas tab. When you use the AutoSum button, Excel enters the function arguments for you, using the most likely range of cells based on the structure of your worksheet. Press Enter to complete the formula.
  4. Excel Skill 2.2 Using AutoSum to Insert a SUM Function Page: EX-44 The SUM mathematical function is used to add several cells together. Instead of writing a formula with several references separated by a plus sign, you can “sum” a range of cells. A formula using the SUM function looks like this: = SUM(A3:A6) The range A3:A6 tells Excel to add the values in all of the cells between A3 and A6 ( A3 1 A4 1 A5 1 A6 ). Although you can create a SUM function using the Function Arguments dialog box or by using Formula AutoComplete, it is much easier to use the AutoSum button because Excel enters the function arguments for you. tips & tricks - When you use the AutoSum button, Excel enters the function arguments for you, using the most likely range of cells based on the structure of your worksheet. For example, if you use AutoSum at the bottom of a column of values, Excel will assume that you want to use the values in the column as the function arguments. If you use AutoSum at the end of a row of values, Excel will use the values in the row.
  5. Excel Skill 2.2 Using AutoSum to Insert a SUM Function Page: EX-44; Figures EX 2.5 and EX 2.6 try this - You can also click the AutoSum button arrow and select SUM from the list. Another way to use the AutoSum function is to select a range of cells, and then click the AutoSum button. Excel will insert the SUM function in the next available (empty) cell. To use Formula AutoComplete to enter a SUM function, type =SU , and then double click SUM in the list of available functions. Excel enters = SUM( in the cell for you. Click the first cell in the range of cells you want to add together, and then drag and release the mouse button when you reach the last cell in the range. Press Enter . Excel enters the cell range as the function arguments, and adds ) to the end of the formula.
  6. Excel Skill 2.3 Creating Formulas Using the AVERAGE Function Page: EX-45 tips & tricks - When calculating an average, Excel will ignore empty cells. If you want to include those cells in your average calculations, make sure they have a value of zero. tell me more - What you might think of as the “average” is actually the statistical mean. Average is a general term in statistics that includes mean (the sum of a group of values divided by the number of values in the group), median (the middle value of a set of values) and mode (the value that appears most often in a group of values). In Excel, the AVERAGE function calculates the mean value. Most people say average when they really want to calculate the mean value. try this - Another way to use AutoSum to calculate an average is to select a range of cells, and then click the AutoSum arrow and click Average. Excel will insert the AVERAGE function in the next available (empty) cell. To use Formula AutoComplete to enter an AVERAGE function, type = AV , and then double click AVERAGE in the list of available functions. Excel enters = AVERAGE( in the cell for you. Click the first cell in the range of cells you want to use for your arguments, and then drag and release the mouse button when you reach the last cell in the range. Press Enter . Excel enters the cell range as the function arguments, and adds ) to the end of the formula.
  7. Excel Skill 2.3 Creating Formulas Using the AVERAGE Function Page: EX-45; Figure EX 2.7 Although you can create an AVERAGE function using the Function Arguments dialog box or by using Formula AutoComplete, it is much easier to use the AutoSum button because Excel enters the function arguments for you. You can increase or decrease the range of cells selected by clicking and dragging the corner of the highlighted cell rangeYou can increase or decrease the range of cells selected by clicking and dragging the corner of the highlighted cell range.
  8. Excel Skill 2.4 Creating Formulas Using Counting Functions Page: EX-46 All three of these functions take the same arguments. A formula using the COUNT function looks like this: = COUNT(A2:A106) The result of this formula is the number of cells in A2 through A106 that contain numerical values. If you want to include cells that contain text, use COUNTA instead. = COUNTA(B2:B106) The result of this formula is the number of cells in B2 through B106 that contain any data (numerical or text). Use COUNTBLANK to find the number of rows missing values in a column. = COUNTBLANK(D2:D106) The result of this formula is the number of cells in D2 through D106 that are blank. tips & tricks - Cells that contain a zero (0) are not considered blank.
  9. Excel Skill 2.4 Creating Formulas Using Counting Functions Page: EX-46; Figure EX 2.8
  10. Excel Skill 2.5 Using Other Statistical Functions Page: EX-47 try this - Another way to use AutoSum to find the minimum or maximum value is to select a range of cells, and then click the AutoSum arrow and click Min or Max . Excel will insert the MIN or MAX function in the next available (empty) cell. To use Formula AutoComplete to enter a MIN or MAX function, type = m , and then double-click the function you want. Excel enters the beginning of the formula in the cell for you. Click the first cell in the range of cells you want to use for your arguments, and then drag and release the mouse button when you reach the last cell in the range. Press Enter . Excel enters the cell range as the function arguments and adds ) to the end of the formula.
  11. Excel Skill 2.5 Using Other Statistical Functions Page: EX-47; Figure EX 2.9 Although you can use the MIN and MAX functions from the Function Arguments dialog box or from the Formula AutoComplete list, it is sometimes easier to use the AutoSum button because Excel enters the function arguments for you.
  12. Excel Skill 2.6 Using Date and Time Functions Page: EX-48 Volatile - They update with the current date or date and time each time the workbook is opened. This is useful if you want to keep track of the last time the workbook was edited or opened.
  13. Excel Skill 2.6 Using Date and Time Functions Page: EX-48; Figure EX 2.10 tips & tricks - Both NOW and TODAY use the date and time from your computer’s clock. If your computer’s clock is wrong, the date and time displayed in your workbook will be wrong as well. tell me more - If the cell is formatted to use a date format that does not display the time, the result of the NOW and TODAY functions will appear the same. However, the underlying value will still be different. If you change the formatting of the cell to display the time, a cell using the TODAY function will always display a time of 12:00 AM, whereas a cell using the NOW function will display the correct time. try this - You can also use Formula AutoComplete or the Insert Function dialog box to add the NOW or TODAY function to your workbook.
  14. Excel Skill 2.7 Using Absolute and Relative References Page: EX-49
  15. Excel Skill 2.7 Using Absolute and Relative References Page: EX-49; Figure EX 2.11
  16. Excel Skill 2.7 Using Absolute and Relative References Page: EX-49; Figure EX 2.11
  17. Excel Skill 2.8 Naming Ranges of Cells Page: EX-50
  18. Excel Skill 2.8 Naming Ranges of Cells Page: EX-50; Figure EX 2.12
  19. Excel Skill 2.8 Naming Ranges of Cells Page: EX-51; Figure EX 2.13 If your worksheet is organized in a table format, with column or row labels, you can automatically create named ranges using the labels as names: Excel automatically creates named ranges for the groups of cells associated with each label. tips & tricks - Names may not include spaces. To make your names easier to read, try using an underscore character _ or a period . between words. try this - You can also create new names through the New Name dialog box. On the Formulas tab, in the Defined Names group, click the Define Name button . The selected cell(s) is entered in the Refers to: box. Type the name you want in the Name: box. If the cell to the immediate left or immediately above the selected cell appears to include a label, Excel will pre-populate the Name: box with that text. Click OK.
  20. Excel Skill 2.9 Working with Named Ranges Page: EX-52
  21. Excel Skill 2.9 Working with Named Ranges Page: EX-52; Figure EX 2.14
  22. Excel Skill 2.9 Working with Named Ranges Page: EX-53; Figure EX 2.15 tell me more - You can also use named ranges to navigate your workbook: Click the arrow next to the Name box to see the list of named ranges in your workbook. To navigate to one of the named ranges, click the name in the list. try this On the Formulas tab, in the Defined Names group, click the Use in Formula button to display a list of names in your workbook, and then click one of the names to insert it into your formula. You can also click Paste Names . . . from the bottom of the Use in Formula list. The Paste Names dialog box opens and lists all of the names in your workbook. Click a name and then click OK to add it to your formula.
  23. Excel Skill 2.10 Using Logical Functions Page: EX-54 The IF function can return a numerical value or display a text string. This formula uses the IF function to calculate a bonus rate (cell H4) based on the sales figure in cell E9 (named Total_Sales). If the value of cell E9 is greater than 50000, the formula will return 10%; if the value of cell E9 is not greater than 50000, the formula will return 5%: = IF(TOTAL_SALES > 50000,10%,5%)
  24. Excel Skill 2.10 Using Logical Functions Page: EX-54; Figures EX 2.16 and EX 2.17 Excel displays the appropriate Function Arguments dialog box where you can enter the function arguments. For example, TOTAL_SALES>50000 will return true if the value of the cell named TOTAL_SALES is greater than 50000 and false if the value is not greater than 50000. tips & tricks - When you click an argument box in the Function Arguments dialog box, a description of the argument appears below the description of the function. As you enter arguments, the dialog box will display the results of your formula. try this - In the Function Arguments dialog box, to enter arguments, you can type the cell reference in the argument box, or you can click the cell to add the cell reference to the dialog box. If the position of the dialog box makes it difficult to click the cell you want, click the Collapse Dialog box button . Click the cell to add the reference to the dialog, and then click the Expand Dialog box button to return to the function dialog box.
  25. Excel Skill 2.11 Calculating Loan Payments Using the PMT Function Page: EX-56 tips & tricks - When working with complex functions like PMT, use cell references as arguments rather than entering values directly. This way you can change values in your spreadsheet and see the results instantly without opening the Function Arguments dialog box again. It can also be helpful to name the cells containing data for the function arguments. (It is easier to remember the cell name “Loan” than the cell reference D6.)
  26. Excel Skill 2.11 Calculating Loan Payments Using the PMT Function Pages: EX-56 and EX-57; Figures EX 2.18 and EX 2.19 Usually, interest rate is expressed as an annual interest rate. If the loan requires a monthly payment, the annual interest rate should be divided by 12. PV - This is how much you owe now (the loan principal). Excel assumes a value of 0 unless you include the argument and specify a different value. If you will make payments on the loan until it is completely paid off, you can leave this argument blank or enter 0. FV - Excel assumes a value of 0 unless you include the argument and specify a different value. If you will make payments on the loan until it is completely paid off, you can leave this argument blank or enter 0 (Optional) In the Type box, enter 1 if the payment is at the beginning of the period. If you omit this argument, Excel assumes a value of 0 (meaning each payment is at the end of the period). Notice that as you enter each argument, the value appears to the right of the argument box. The formula result (in this case, the loan payment amount) is displayed at the lower-left corner of the dialog box.
  27. Excel Skill 2.12 Finding Data Using the VLOOKUP Function Page: EX-58; Figure EX 2.20 tips & tricks- Use a cell reference for the Lookup_value argument to give your formula more flexibility. This way you can change the value in the referenced cell instead of opening the Function Arguments dialog box every time you want to look up a different value. Similarly, use table names and range names instead of cell references in the Table_array argument. When your workbook includes large amounts of data, it is much easier to use names in formulas rather than select a range of data that may be hundreds of rows long. tell me more - The examples here all use the VLOOKUP function to find corresponding values in different columns within the same row (a vertical lookup). The HLOOKUP function works similarly, except you use it to find corresponding values in different rows within the same column (a horizontal lookup). Use HLOOKUP when your worksheet uses a horizontal layout—few rows with many columns. Use VLOOKUP when your worksheet uses a vertical layout—few columns with many rows.
  28. Excel Skill 2.12 Finding Data Using the VLOOKUP Function Pages: EX-58 and EX-59; Figure EX 2.21 To use the VLOOKUP function: Select the cell where you want to enter the formula. On the Formulas tab, in the Function Library group, click the Lookup & Reference button . Select VLOOKUP from the list. Excel displays the appropriate Function Arguments dialog box. In the Lookup_value box, enter the value in the first column that you want to return a corresponding value for. In other words, the value you want to look up. In the Table_array box, enter the range of cells for the array (or the table or range name). If your worksheet includes a header row, do not include it in the range used for the table_array argument. In the Col_index_num box, enter the column number from which the function should return a matching value. Enter the column number, not the letter or the column heading. (optional) In the Range_lookup box, enter FALSE if you want to find only an exact match for the value entered in the Lookup_value box. If you omit this argument, Excel assumes a value of TRUE and will return the value for the closest match in the first column. Click OK. When using VLOOKUP, make sure the table or array is sorted A–Z by the first column (the lookup column). If your data are not sorted, you will see unexpected results.
  29. Excel Skill 2.13 Creating Formulas Referencing Data from Another Worksheet Page: EX-60 tell me more - If your workbook includes multiple sheets with the same data structure, you can create a formula that references the same cell(s) on multiple sheets. This is called a 3-D reference . For example, the formula =SUM(‘2011 Projection:2013 Projection’!B24) will calculate the sum of the value of cell B24 on all sheets from 2011 Projection to 2013 Projection. To add a 3-D reference to a formula, begin entering the formula as you would normally. Then, when you want to add the 3-D reference, select the sheet tabs for all the sheets you want included and click the specific cell(s) you want. try this - You are not limited to referencing data within a single workbook. The file name of the referenced workbook is enclosed in brackets, followed by the sheet name, all enclosed in single quotes, followed by the specific cell reference. If the external file is not open, the reference will include the full path name to the file, not just the file name.
  30. Excel Skill 2.13 Creating Formulas Referencing Data from Another Worksheet Page: EX-60; Figure EX 2.22 If you want to include the reference in a formula, enter the formula as normal. When you want to add a reference to a cell in another sheet, click the sheet tab, then click the cell(s) you want to add to the formula. Continue entering the formula in the formula bar or clicking cells throughout your workbook. When you are finished with the formula, press Enter .
  31. Excel Skill 2.14 Displaying and Printing Formulas Page: EX-61 tell me more - You can also set the worksheet option to display formulas instead of values, but this method is much less convenient than using the Show Formulas button on the Ribbon. Click the File tab. Click the Options button. Click Advanced, and then scroll down to the Display options for this worksheet: section. Click the check box for Show formulas in cells instead of their calculated results. Select the worksheet for which you want to display only formulas. Click OK. Notice that the Show Formulas button on the Ribbon now appears highlighted. To hide the formulas and display calculated values instead, click the Show Formulas button to turn the option off. try this - The keyboard shortcut to display (or hide) formulas is Ctrl + ` (the ` key is directly to the left of 1 at the top of the keyboard).
  32. Excel Skill 2.14 Displaying and Printing Formulas Page: EX-61; Figure EX 2.23 To hide the formulas and display calculated values, click the Show Formulas button again.
  33. Excel Skill 2.15 Checking Formulas for Errors Page: EX-62 When you click Ignore Error to dismiss error, Excel will ignore this error until you manually reset ignored errors through Excel Options.
  34. Excel Skill 2.15 Checking Formulas for Errors Page: EX-62; Figure EX 2.24 Cells that include potential errors are marked with a green triangle in the upper-left corner of the cell. When you click the cell, Excel displays a Smart Tag to help you resolve the error.
  35. Excel Skill 2.15 Checking Formulas for Errors Pages: EX-62 and EX-63; Figure EX 2.25 tips & tricks - You can make changes to your worksheet without closing the Error Checking dialog box. When you click away from the dialog box, one of the buttons changes to a Resume button and none of the other buttons in the dialog box are available. When you are ready to return to error checking, click the Resume button. tell me more - If the error is part of a complex formula, Excel may include a Show Calculation Steps . . . button in the Error Checking dialog box. This button launches the Evaluate Formula dialog box where you can walk through the formula step by step to try to find the cause of the error. If the error is related to a reference to another cell, Excel will offer a Trace Error button to display precedent and dependent arrows showing dependencies between formulas in your worksheet. try this - You can also start Error Checking by clicking the Error Checking arrow and selecting Error Checking . . .
  36. Excel Skills Page: EX-40