ๅฐŠๆ•ฌ็š„ ๅพฎไฟกๆฑ‡็Ž‡๏ผš1ๅ†† โ‰ˆ 0.046166 ๅ…ƒ ๆ”ฏไป˜ๅฎๆฑ‡็Ž‡๏ผš1ๅ†† โ‰ˆ 0.046257ๅ…ƒ [้€€ๅ‡บ็™ปๅฝ•]
SlideShare a Scribd company logo
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com



               EXCEL 2007 - FORMULAS AND FUNCTIONS HANDOUT
Topics to be covered: MAX, MIN, AVG, IF, NESTED IF, CONDITIONAL SUM.

Terminology:
Formula: A sequence of values, cell references, names, functions, or operators in a cell that
produces a new value from existing values. A formula always begins with an equal sign (=).

Function: a predefined or built-in formula. Functions can be used to perform simple or
complex calculations.

Formula Bar: A bar near the top of the Microsoft Excel window that you use to enter or edit
values or formulas in cells or charts. It displays the constant value or formula used in the active
cell. To display or hide the formula bar, click Formula Bar on the View menu.

Formula Palette: A tool that helps you create or edit a formula and also provides information
about functions and their arguments. The palette appears below the formula bar when you
click the Edit Formula button on the formula bar or the Insert Function button on the Standard
toolbar.

            Insert Function button launches the Function Palette.

Argument: The values a function uses to perform operations or calculations. The type of
argument a function uses is specific to the function. Common arguments used within functions
include numeric values, text values, cell references, ranges of cells, names, labels, and nested
functions.

Cell References: A function can refer to a cell. The function will re-calculate any time the
value of the cell changes. A function can also refer to a range of cells. To refer to a range of
cells, enter the reference for the cell in the upper-left corner of the range, a colon (:), and then
the reference to the cell in the lower-right corner of the range. The following are examples of
references.

Ranges:
  The Range                         Cells included in the Range
  A15                               Cell in column A , row 15
  C1:C25                            All cells in column C, rows 1 through 25
  B2:D30                            All cell in columns B, C and D, rows 2 through 30 in each column

The Syntax of a Function: A function begins with an = (equal sign) and the name of the
function followed by an opening parenthesis. The arguments for the function are separated by
commas and end with a closing parenthesis.
Nesting: Refers to using functions as arguments for other functions. When a function is used
as an argument (or nested) it must return the same type of value that the argument uses or an
#VALUE! error will occur. A formula can contain up to seven levels of nested functions.


For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com


Example below: AVERAGE and SUM are nested functions of IF
=IF(AVERAGE(A2:A5)>50,SUM(B2:B5),0)
Read as โ€œIF the average of A2 through A5 is greater than 50, THEN enter the sum or B2
through B5, ELSE enter a 0โ€




Hands on Exercises:
Start Excel.
1. Open the file named Excel-FormulasFunctions.xls.
(The five sheets in this workbook will be used in class. Notice each sheet tab identifies the
topic covered.)

2. Make sure you are looking at the first sheet, named AvgMaxMin
We will enter formulas to calculate the AVERAGE, MAXIMUM (highest) and MINIMUM
(lowest) book sales in cells N5, O5, P5. Note that the formulas have already been entered in
N4, O4, and P4 for you to refer to.


For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com


Reminder: Always position the cursor in the cell where you want the result of your function or
formula to go before starting your formula or function.

3. Click Cell N5.

4. Click the Insert Function button
5. Select AVERAGE from the Function Name box on the right side. (If you donโ€™t see it, click
   All in the Function Category box to get the entire list and choose from there.)

6. Once you have found it, click OK.

The Function Argument Box will open.




.




7. Indicate the range of cells B5 to M5.

     (Note: Excel may try to help you by suggesting a range. If the range suggested by Excel is
     correct then this step is not necessary, however it is a good idea to double check. )

     If the box is taking up too much space, you may click the Collapse                  Dialog
     Box button which collapses the dialog allowing you to check the range.              Click the
     Collapse Dialog button again to expand the window.

8. Notice the formula result is displayed near the bottom of the formula palette.

9. Click OK.

10. The function can now be copied down to the rest of the cells in the column. Use the fill
    handle to do so.

For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com




11. Refer to the preceding steps to enter the function for MAX in cell O5 and MIN in cell P5.
               Hint: Check the contents of cells O4 and P4 before you begin. Be sure to ask if
               you have questions.
SimpleIF

1. Switch to the second sheet labeled SimpleIF.

In this sheet you will use a simple IF function to evaluate a number in column B (the studentsโ€™
numerical grade) and then assign an S or NC (indicating Satisfactory or No Credit for the
course) in column C. NOTE: A satisfactory grade is one which is > 65.5

Look at the contents of cell C4 and also notice the informational text off to the right.

                                                     =IF(B4>65.5,"S","NC")

(Tip: The quotes around S and NC (or any text) are necessary. Quotes are added
automatically when using the function argument box.)

2. Click cell C5, then click the Insert Function button and try to create the function yourself.
Please ask if you have questions.


NestedIF

1. Click the NestedIF sheet tab. This sheet will show you how to assign a letter grade to a
numeric score.

2. The first function has been entered for you in C2. Click C2 and check the formula bar to
see what it looks like. If you would like, try to recreate the function in Cell C3.

                        =IF(B3>92,"A",IF(B3>85,"B",IF(B3>78,"C",IF(B3>65,"D","F"))))

3. Click Cell C3.

Hint: Start with the Insert Function button and choose the IF function. To add each of the
nested IF functions for the โ€œvalue_if_falseโ€ fields, click the function box (to the left of the red X
on the formula bar and choose IF. This is a tricky one. Please ask if you would like assistance.
Another method is to type the formula if you already know what it is.


AVERAGE, MAX, MIN AND IF REVIEW

1. Click the Grades sheet tab. This sheet will allow you to apply what you have just learned
about AVG, MAX, MIN and IF. Refer to the information on the lower portion of this sheet, the


For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com


instructions on pages 2 and 3 of this handout, or to the other sheets in the Excel file. If you
have questions, be sure to ask the instructor.




For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com


CONDITIONAL SUM

The last sheet in your workbook gives examples of a conditional sum by using the SUMIF
function. The SUMIF function adds the cells specified by a given condition or criteria.

1. Click the Cond.Sum sheet tab.

This sheet contains data about employee travel expenses.
In this exercise we want to find a total dollar amount by person. One way to do this is by using
the SUMIF function.

2. Scroll down to the bottom of the data.

3. Click cell I25 and check the formula bar to see the contents.

                                         =SUMIF(B5:B22,"Dr. Alexander",I5:I22)

The first part of the formula sets the range that contains the criteria. The second tells you what
the criteria is (i.e,; is equal to โ€œDr. Alexanderโ€). The third part defines the range that contains
the data that you would like to manipulate.

To check this out, change the contents of cell
G26 to Dr. Alexander.


If you would like to recreate the function, just
choose any cell and start by clicking the Insert
Function button and choosing SUMIF. Notice
the information provided at the bottom of the
sheet to help you.


STATISTICAL Functions

Open
Excel-StatsCalc.xls

Complete the
formulas in Column D
by using the Insert
Function feature or
you may simply type
in the formulas listed
in Column E.



For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com


Now try it by adding a new feature โ€œAnalysis Tool Pacโ€

     ๏ถ Go to Tools ๏ƒ  Add ins ๏ƒ  Analysis Tool Pac


Letโ€™s now use the new feature.

     ๏ถ Go to Tools ๏ƒ  Data Analysis ๏ƒ  Descriptive Statistics

     ๏ถ Select Input Range as B5:B14

     ๏ถ Select Output Range E18

     ๏ถ Check Summary Statistics




Microsoft Excel has hundreds of functions, many of them very complex. This class has
covered only a few of the most commonly used functions. As you explore the other functions in
Excel, refer to on-line help and the dialog box prompts for assistance. The more you use Excel
functions the easier they become.



For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com




    For useful Documents
         like this and
         Lots of more
      Educational and
    Technological Stuff...

                                                    Visit...

www.thecodexpert.com


For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com

More Related Content

What's hot

Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
NR Computer Learning Center
ย 
Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in Excel
Kim Estes
ย 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
Malika khalil
ย 
Row, Column, Index, Match, Offset Functions. Excel Tutorial
Row, Column, Index, Match, Offset Functions. Excel TutorialRow, Column, Index, Match, Offset Functions. Excel Tutorial
Row, Column, Index, Match, Offset Functions. Excel Tutorial
Ilgar Zarbaliyev
ย 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excel
Malika khalil
ย 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel Tutorial
Ilgar Zarbaliyev
ย 
Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
mindysholder
ย 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
LearnIT@UD
ย 
Excel11
Excel11Excel11
Excel11
acharyaa
ย 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
Sudipta Mazumder
ย 
Excel for research
Excel  for researchExcel  for research
Excel for research
JamalBhai
ย 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
Pranav Kumar
ย 
Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
ManishTiwari326
ย 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
wildman099
ย 
Excel Excellence (Microsoft Excel training that "sticks"): Formulas
Excel Excellence (Microsoft Excel training that "sticks"): FormulasExcel Excellence (Microsoft Excel training that "sticks"): Formulas
Excel Excellence (Microsoft Excel training that "sticks"): Formulas
Laura Winger
ย 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basics
guest1c3d8c6
ย 
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
ย 
stats
statsstats
stats
Aiden Yeh
ย 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
LinkedIn Learning Solutions
ย 
Fill series. Data validation. Excel Tutorial
Fill series. Data validation. Excel TutorialFill series. Data validation. Excel Tutorial
Fill series. Data validation. Excel Tutorial
Ilgar Zarbaliyev
ย 

What's hot (20)

Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
ย 
Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in Excel
ย 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
ย 
Row, Column, Index, Match, Offset Functions. Excel Tutorial
Row, Column, Index, Match, Offset Functions. Excel TutorialRow, Column, Index, Match, Offset Functions. Excel Tutorial
Row, Column, Index, Match, Offset Functions. Excel Tutorial
ย 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excel
ย 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel Tutorial
ย 
Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
ย 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
ย 
Excel11
Excel11Excel11
Excel11
ย 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
ย 
Excel for research
Excel  for researchExcel  for research
Excel for research
ย 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
ย 
Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
ย 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
ย 
Excel Excellence (Microsoft Excel training that "sticks"): Formulas
Excel Excellence (Microsoft Excel training that "sticks"): FormulasExcel Excellence (Microsoft Excel training that "sticks"): Formulas
Excel Excellence (Microsoft Excel training that "sticks"): Formulas
ย 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basics
ย 
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
TrainingOutline_Excel_FormulasNFunctions_Workshop (Writing Sample)
ย 
stats
statsstats
stats
ย 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
ย 
Fill series. Data validation. Excel Tutorial
Fill series. Data validation. Excel TutorialFill series. Data validation. Excel Tutorial
Fill series. Data validation. Excel Tutorial
ย 

Similar to Excel Formulas Functions 2007

Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
CliffordBorromeo
ย 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
maharzahid0
ย 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manual
jpdas54
ย 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
dejene3
ย 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
Ramesh Meti
ย 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptx
ssuser3d8a50
ย 
Module 5 entering data in worksheet
Module 5 entering data in worksheetModule 5 entering data in worksheet
Module 5 entering data in worksheet
Dr. Shalini Pandey
ย 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
SpreadsheetTrainer
ย 
9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx
SheryldeVilla2
ย 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
Parul_100in
ย 
Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulas
Sankar Natarajan
ย 
Excel Tips
Excel TipsExcel Tips
Excel Tips
ashish83mech
ย 
Excel Intermediate 2007
Excel Intermediate 2007Excel Intermediate 2007
Excel Intermediate 2007
simply_coool
ย 
How to use vlookup in MS Excel
How to use vlookup in MS ExcelHow to use vlookup in MS Excel
How to use vlookup in MS Excel
Jaspal Singh
ย 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
dpd
ย 
Excel
ExcelExcel
Excel
deewil
ย 
Excel useful tips
Excel useful tipsExcel useful tips
Excel useful tips
Mohsin Azad
ย 
Excel useful tips
Excel useful tipsExcel useful tips
Excel useful tips
sujayramshankar
ย 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
Srinath Maharana
ย 
Excel tips
Excel tipsExcel tips
Excel tips
Ashish Patel
ย 

Similar to Excel Formulas Functions 2007 (20)

Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
ย 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
ย 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manual
ย 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
ย 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
ย 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptx
ย 
Module 5 entering data in worksheet
Module 5 entering data in worksheetModule 5 entering data in worksheet
Module 5 entering data in worksheet
ย 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
ย 
9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx9 - Advanced Functions in MS Excel.pptx
9 - Advanced Functions in MS Excel.pptx
ย 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
ย 
Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulas
ย 
Excel Tips
Excel TipsExcel Tips
Excel Tips
ย 
Excel Intermediate 2007
Excel Intermediate 2007Excel Intermediate 2007
Excel Intermediate 2007
ย 
How to use vlookup in MS Excel
How to use vlookup in MS ExcelHow to use vlookup in MS Excel
How to use vlookup in MS Excel
ย 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
ย 
Excel
ExcelExcel
Excel
ย 
Excel useful tips
Excel useful tipsExcel useful tips
Excel useful tips
ย 
Excel useful tips
Excel useful tipsExcel useful tips
Excel useful tips
ย 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
ย 
Excel tips
Excel tipsExcel tips
Excel tips
ย 

More from simply_coool

Excel Printing Tips2007
Excel Printing Tips2007Excel Printing Tips2007
Excel Printing Tips2007
simply_coool
ย 
Excel Printing Tips
Excel Printing TipsExcel Printing Tips
Excel Printing Tips
simply_coool
ย 
Excel Intro Part1 2007
Excel Intro Part1 2007Excel Intro Part1 2007
Excel Intro Part1 2007
simply_coool
ย 
Excel Intro Part2
Excel Intro Part2Excel Intro Part2
Excel Intro Part2
simply_coool
ย 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007
simply_coool
ย 
Excel Intermediate
Excel IntermediateExcel Intermediate
Excel Intermediate
simply_coool
ย 
Excel Intro Part1
Excel Intro Part1Excel Intro Part1
Excel Intro Part1
simply_coool
ย 
Excel Graphs Charts
Excel Graphs ChartsExcel Graphs Charts
Excel Graphs Charts
simply_coool
ย 
Excel Formatting
Excel FormattingExcel Formatting
Excel Formatting
simply_coool
ย 
Excel Formatting 2007
Excel Formatting 2007Excel Formatting 2007
Excel Formatting 2007
simply_coool
ย 
Hr Ethical Issues
Hr Ethical IssuesHr Ethical Issues
Hr Ethical Issues
simply_coool
ย 
Ethics In Various Religions
Ethics In Various ReligionsEthics In Various Religions
Ethics In Various Religions
simply_coool
ย 
Imp Of Be
Imp Of BeImp Of Be
Imp Of Be
simply_coool
ย 
Intro To BUSINESS ETHICS
Intro To BUSINESS ETHICSIntro To BUSINESS ETHICS
Intro To BUSINESS ETHICS
simply_coool
ย 
Ethics Of Conserving Depletable Resources
Ethics Of Conserving Depletable ResourcesEthics Of Conserving Depletable Resources
Ethics Of Conserving Depletable Resources
simply_coool
ย 
Extent Of Job Discrimination
Extent Of Job DiscriminationExtent Of Job Discrimination
Extent Of Job Discrimination
simply_coool
ย 
Firmโ€™S Duties To The Employee
Firmโ€™S Duties To The EmployeeFirmโ€™S Duties To The Employee
Firmโ€™S Duties To The Employee
simply_coool
ย 
Ethics
EthicsEthics
Ethics
simply_coool
ย 
Ethics And Values In Business
Ethics And Values In BusinessEthics And Values In Business
Ethics And Values In Business
simply_coool
ย 
Ethics In Hrm
Ethics In HrmEthics In Hrm
Ethics In Hrmsimply_coool
ย 

More from simply_coool (20)

Excel Printing Tips2007
Excel Printing Tips2007Excel Printing Tips2007
Excel Printing Tips2007
ย 
Excel Printing Tips
Excel Printing TipsExcel Printing Tips
Excel Printing Tips
ย 
Excel Intro Part1 2007
Excel Intro Part1 2007Excel Intro Part1 2007
Excel Intro Part1 2007
ย 
Excel Intro Part2
Excel Intro Part2Excel Intro Part2
Excel Intro Part2
ย 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007
ย 
Excel Intermediate
Excel IntermediateExcel Intermediate
Excel Intermediate
ย 
Excel Intro Part1
Excel Intro Part1Excel Intro Part1
Excel Intro Part1
ย 
Excel Graphs Charts
Excel Graphs ChartsExcel Graphs Charts
Excel Graphs Charts
ย 
Excel Formatting
Excel FormattingExcel Formatting
Excel Formatting
ย 
Excel Formatting 2007
Excel Formatting 2007Excel Formatting 2007
Excel Formatting 2007
ย 
Hr Ethical Issues
Hr Ethical IssuesHr Ethical Issues
Hr Ethical Issues
ย 
Ethics In Various Religions
Ethics In Various ReligionsEthics In Various Religions
Ethics In Various Religions
ย 
Imp Of Be
Imp Of BeImp Of Be
Imp Of Be
ย 
Intro To BUSINESS ETHICS
Intro To BUSINESS ETHICSIntro To BUSINESS ETHICS
Intro To BUSINESS ETHICS
ย 
Ethics Of Conserving Depletable Resources
Ethics Of Conserving Depletable ResourcesEthics Of Conserving Depletable Resources
Ethics Of Conserving Depletable Resources
ย 
Extent Of Job Discrimination
Extent Of Job DiscriminationExtent Of Job Discrimination
Extent Of Job Discrimination
ย 
Firmโ€™S Duties To The Employee
Firmโ€™S Duties To The EmployeeFirmโ€™S Duties To The Employee
Firmโ€™S Duties To The Employee
ย 
Ethics
EthicsEthics
Ethics
ย 
Ethics And Values In Business
Ethics And Values In BusinessEthics And Values In Business
Ethics And Values In Business
ย 
Ethics In Hrm
Ethics In HrmEthics In Hrm
Ethics In Hrm
ย 

Recently uploaded

INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION
INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION
INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION
ShwetaGawande8
ย 
Observational Learning
Observational Learning Observational Learning
Observational Learning
sanamushtaq922
ย 
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT KanpurDiversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Quiz Club IIT Kanpur
ย 
Talking Tech through Compelling Visual Aids
Talking Tech through Compelling Visual AidsTalking Tech through Compelling Visual Aids
Talking Tech through Compelling Visual Aids
MattVassar1
ย 
Non-Verbal Communication for Tech Professionals
Non-Verbal Communication for Tech ProfessionalsNon-Verbal Communication for Tech Professionals
Non-Verbal Communication for Tech Professionals
MattVassar1
ย 
What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17
Celine George
ย 
Information and Communication Technology in Education
Information and Communication Technology in EducationInformation and Communication Technology in Education
Information and Communication Technology in Education
MJDuyan
ย 
Post init hook in the odoo 17 ERP Module
Post init hook in the  odoo 17 ERP ModulePost init hook in the  odoo 17 ERP Module
Post init hook in the odoo 17 ERP Module
Celine George
ย 
Interprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdfInterprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdf
Ben Aldrich
ย 
Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...
Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...
Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...
Nguyen Thanh Tu Collection
ย 
Slides Peluncuran Amalan Pemakanan Sihat.pptx
Slides Peluncuran Amalan Pemakanan Sihat.pptxSlides Peluncuran Amalan Pemakanan Sihat.pptx
Slides Peluncuran Amalan Pemakanan Sihat.pptx
shabeluno
ย 
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
220711130083 SUBHASHREE RAKSHIT  Internet resources for social science220711130083 SUBHASHREE RAKSHIT  Internet resources for social science
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
Kalna College
ย 
How to stay relevant as a cyber professional: Skills, trends and career paths...
How to stay relevant as a cyber professional: Skills, trends and career paths...How to stay relevant as a cyber professional: Skills, trends and career paths...
How to stay relevant as a cyber professional: Skills, trends and career paths...
Infosec
ย 
Creating Images and Videos through AI.pptx
Creating Images and Videos through AI.pptxCreating Images and Videos through AI.pptx
Creating Images and Videos through AI.pptx
Forum of Blended Learning
ย 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
Kalna College
ย 
How to Create a Stage or a Pipeline in Odoo 17 CRM
How to Create a Stage or a Pipeline in Odoo 17 CRMHow to Create a Stage or a Pipeline in Odoo 17 CRM
How to Create a Stage or a Pipeline in Odoo 17 CRM
Celine George
ย 
Decolonizing Universal Design for Learning
Decolonizing Universal Design for LearningDecolonizing Universal Design for Learning
Decolonizing Universal Design for Learning
Frederic Fovet
ย 
Accounting for Restricted Grants When and How To Record Properly
Accounting for Restricted Grants  When and How To Record ProperlyAccounting for Restricted Grants  When and How To Record Properly
Accounting for Restricted Grants When and How To Record Properly
TechSoup
ย 
bryophytes.pptx bsc botany honours second semester
bryophytes.pptx bsc botany honours  second semesterbryophytes.pptx bsc botany honours  second semester
bryophytes.pptx bsc botany honours second semester
Sarojini38
ย 
The Rise of the Digital Telecommunication Marketplace.pptx
The Rise of the Digital Telecommunication Marketplace.pptxThe Rise of the Digital Telecommunication Marketplace.pptx
The Rise of the Digital Telecommunication Marketplace.pptx
PriyaKumari928991
ย 

Recently uploaded (20)

INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION
INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION
INTRODUCTION TO HOSPITALS & AND ITS ORGANIZATION
ย 
Observational Learning
Observational Learning Observational Learning
Observational Learning
ย 
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT KanpurDiversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
ย 
Talking Tech through Compelling Visual Aids
Talking Tech through Compelling Visual AidsTalking Tech through Compelling Visual Aids
Talking Tech through Compelling Visual Aids
ย 
Non-Verbal Communication for Tech Professionals
Non-Verbal Communication for Tech ProfessionalsNon-Verbal Communication for Tech Professionals
Non-Verbal Communication for Tech Professionals
ย 
What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17
ย 
Information and Communication Technology in Education
Information and Communication Technology in EducationInformation and Communication Technology in Education
Information and Communication Technology in Education
ย 
Post init hook in the odoo 17 ERP Module
Post init hook in the  odoo 17 ERP ModulePost init hook in the  odoo 17 ERP Module
Post init hook in the odoo 17 ERP Module
ย 
Interprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdfInterprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdf
ย 
Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...
Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...
Bแป˜ Bร€I TแบฌP TEST THEO UNIT - FORM 2025 - TIแบพNG ANH 12 GLOBAL SUCCESS - KรŒ 1 (B...
ย 
Slides Peluncuran Amalan Pemakanan Sihat.pptx
Slides Peluncuran Amalan Pemakanan Sihat.pptxSlides Peluncuran Amalan Pemakanan Sihat.pptx
Slides Peluncuran Amalan Pemakanan Sihat.pptx
ย 
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
220711130083 SUBHASHREE RAKSHIT  Internet resources for social science220711130083 SUBHASHREE RAKSHIT  Internet resources for social science
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
ย 
How to stay relevant as a cyber professional: Skills, trends and career paths...
How to stay relevant as a cyber professional: Skills, trends and career paths...How to stay relevant as a cyber professional: Skills, trends and career paths...
How to stay relevant as a cyber professional: Skills, trends and career paths...
ย 
Creating Images and Videos through AI.pptx
Creating Images and Videos through AI.pptxCreating Images and Videos through AI.pptx
Creating Images and Videos through AI.pptx
ย 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
ย 
How to Create a Stage or a Pipeline in Odoo 17 CRM
How to Create a Stage or a Pipeline in Odoo 17 CRMHow to Create a Stage or a Pipeline in Odoo 17 CRM
How to Create a Stage or a Pipeline in Odoo 17 CRM
ย 
Decolonizing Universal Design for Learning
Decolonizing Universal Design for LearningDecolonizing Universal Design for Learning
Decolonizing Universal Design for Learning
ย 
Accounting for Restricted Grants When and How To Record Properly
Accounting for Restricted Grants  When and How To Record ProperlyAccounting for Restricted Grants  When and How To Record Properly
Accounting for Restricted Grants When and How To Record Properly
ย 
bryophytes.pptx bsc botany honours second semester
bryophytes.pptx bsc botany honours  second semesterbryophytes.pptx bsc botany honours  second semester
bryophytes.pptx bsc botany honours second semester
ย 
The Rise of the Digital Telecommunication Marketplace.pptx
The Rise of the Digital Telecommunication Marketplace.pptxThe Rise of the Digital Telecommunication Marketplace.pptx
The Rise of the Digital Telecommunication Marketplace.pptx
ย 

Excel Formulas Functions 2007

  • 1. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com EXCEL 2007 - FORMULAS AND FUNCTIONS HANDOUT Topics to be covered: MAX, MIN, AVG, IF, NESTED IF, CONDITIONAL SUM. Terminology: Formula: A sequence of values, cell references, names, functions, or operators in a cell that produces a new value from existing values. A formula always begins with an equal sign (=). Function: a predefined or built-in formula. Functions can be used to perform simple or complex calculations. Formula Bar: A bar near the top of the Microsoft Excel window that you use to enter or edit values or formulas in cells or charts. It displays the constant value or formula used in the active cell. To display or hide the formula bar, click Formula Bar on the View menu. Formula Palette: A tool that helps you create or edit a formula and also provides information about functions and their arguments. The palette appears below the formula bar when you click the Edit Formula button on the formula bar or the Insert Function button on the Standard toolbar. Insert Function button launches the Function Palette. Argument: The values a function uses to perform operations or calculations. The type of argument a function uses is specific to the function. Common arguments used within functions include numeric values, text values, cell references, ranges of cells, names, labels, and nested functions. Cell References: A function can refer to a cell. The function will re-calculate any time the value of the cell changes. A function can also refer to a range of cells. To refer to a range of cells, enter the reference for the cell in the upper-left corner of the range, a colon (:), and then the reference to the cell in the lower-right corner of the range. The following are examples of references. Ranges: The Range Cells included in the Range A15 Cell in column A , row 15 C1:C25 All cells in column C, rows 1 through 25 B2:D30 All cell in columns B, C and D, rows 2 through 30 in each column The Syntax of a Function: A function begins with an = (equal sign) and the name of the function followed by an opening parenthesis. The arguments for the function are separated by commas and end with a closing parenthesis. Nesting: Refers to using functions as arguments for other functions. When a function is used as an argument (or nested) it must return the same type of value that the argument uses or an #VALUE! error will occur. A formula can contain up to seven levels of nested functions. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 2. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com Example below: AVERAGE and SUM are nested functions of IF =IF(AVERAGE(A2:A5)>50,SUM(B2:B5),0) Read as โ€œIF the average of A2 through A5 is greater than 50, THEN enter the sum or B2 through B5, ELSE enter a 0โ€ Hands on Exercises: Start Excel. 1. Open the file named Excel-FormulasFunctions.xls. (The five sheets in this workbook will be used in class. Notice each sheet tab identifies the topic covered.) 2. Make sure you are looking at the first sheet, named AvgMaxMin We will enter formulas to calculate the AVERAGE, MAXIMUM (highest) and MINIMUM (lowest) book sales in cells N5, O5, P5. Note that the formulas have already been entered in N4, O4, and P4 for you to refer to. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 3. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com Reminder: Always position the cursor in the cell where you want the result of your function or formula to go before starting your formula or function. 3. Click Cell N5. 4. Click the Insert Function button 5. Select AVERAGE from the Function Name box on the right side. (If you donโ€™t see it, click All in the Function Category box to get the entire list and choose from there.) 6. Once you have found it, click OK. The Function Argument Box will open. . 7. Indicate the range of cells B5 to M5. (Note: Excel may try to help you by suggesting a range. If the range suggested by Excel is correct then this step is not necessary, however it is a good idea to double check. ) If the box is taking up too much space, you may click the Collapse Dialog Box button which collapses the dialog allowing you to check the range. Click the Collapse Dialog button again to expand the window. 8. Notice the formula result is displayed near the bottom of the formula palette. 9. Click OK. 10. The function can now be copied down to the rest of the cells in the column. Use the fill handle to do so. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 4. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com 11. Refer to the preceding steps to enter the function for MAX in cell O5 and MIN in cell P5. Hint: Check the contents of cells O4 and P4 before you begin. Be sure to ask if you have questions. SimpleIF 1. Switch to the second sheet labeled SimpleIF. In this sheet you will use a simple IF function to evaluate a number in column B (the studentsโ€™ numerical grade) and then assign an S or NC (indicating Satisfactory or No Credit for the course) in column C. NOTE: A satisfactory grade is one which is > 65.5 Look at the contents of cell C4 and also notice the informational text off to the right. =IF(B4>65.5,"S","NC") (Tip: The quotes around S and NC (or any text) are necessary. Quotes are added automatically when using the function argument box.) 2. Click cell C5, then click the Insert Function button and try to create the function yourself. Please ask if you have questions. NestedIF 1. Click the NestedIF sheet tab. This sheet will show you how to assign a letter grade to a numeric score. 2. The first function has been entered for you in C2. Click C2 and check the formula bar to see what it looks like. If you would like, try to recreate the function in Cell C3. =IF(B3>92,"A",IF(B3>85,"B",IF(B3>78,"C",IF(B3>65,"D","F")))) 3. Click Cell C3. Hint: Start with the Insert Function button and choose the IF function. To add each of the nested IF functions for the โ€œvalue_if_falseโ€ fields, click the function box (to the left of the red X on the formula bar and choose IF. This is a tricky one. Please ask if you would like assistance. Another method is to type the formula if you already know what it is. AVERAGE, MAX, MIN AND IF REVIEW 1. Click the Grades sheet tab. This sheet will allow you to apply what you have just learned about AVG, MAX, MIN and IF. Refer to the information on the lower portion of this sheet, the For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 5. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com instructions on pages 2 and 3 of this handout, or to the other sheets in the Excel file. If you have questions, be sure to ask the instructor. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 6. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com CONDITIONAL SUM The last sheet in your workbook gives examples of a conditional sum by using the SUMIF function. The SUMIF function adds the cells specified by a given condition or criteria. 1. Click the Cond.Sum sheet tab. This sheet contains data about employee travel expenses. In this exercise we want to find a total dollar amount by person. One way to do this is by using the SUMIF function. 2. Scroll down to the bottom of the data. 3. Click cell I25 and check the formula bar to see the contents. =SUMIF(B5:B22,"Dr. Alexander",I5:I22) The first part of the formula sets the range that contains the criteria. The second tells you what the criteria is (i.e,; is equal to โ€œDr. Alexanderโ€). The third part defines the range that contains the data that you would like to manipulate. To check this out, change the contents of cell G26 to Dr. Alexander. If you would like to recreate the function, just choose any cell and start by clicking the Insert Function button and choosing SUMIF. Notice the information provided at the bottom of the sheet to help you. STATISTICAL Functions Open Excel-StatsCalc.xls Complete the formulas in Column D by using the Insert Function feature or you may simply type in the formulas listed in Column E. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 7. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com Now try it by adding a new feature โ€œAnalysis Tool Pacโ€ ๏ถ Go to Tools ๏ƒ  Add ins ๏ƒ  Analysis Tool Pac Letโ€™s now use the new feature. ๏ถ Go to Tools ๏ƒ  Data Analysis ๏ƒ  Descriptive Statistics ๏ถ Select Input Range as B5:B14 ๏ถ Select Output Range E18 ๏ถ Check Summary Statistics Microsoft Excel has hundreds of functions, many of them very complex. This class has covered only a few of the most commonly used functions. As you explore the other functions in Excel, refer to on-line help and the dialog box prompts for assistance. The more you use Excel functions the easier they become. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  • 8. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com
  ็ฟป่ฏ‘๏ผš