SlideShare une entreprise Scribd logo
1  sur  8
Télécharger pour lire hors ligne
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

Contenu connexe

Tendances

Creating Formulas in Excel
Creating Formulas in ExcelCreating Formulas in Excel
Creating Formulas in ExcelKim Estes
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excelMalika 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 TutorialIlgar Zarbaliyev
 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excelMalika khalil
 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialIlgar Zarbaliyev
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulasLearnIT@UD
 
Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
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
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
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"): FormulasLaura Winger
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basicsguest1c3d8c6
 
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
 
Fill series. Data validation. Excel Tutorial
Fill series. Data validation. Excel TutorialFill series. Data validation. Excel Tutorial
Fill series. Data validation. Excel TutorialIlgar Zarbaliyev
 

Tendances (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
 

Similaire à Excel Formulas Functions 2007

Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manualjpdas54
 
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.pptdejene3
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Ramesh Meti
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxssuser3d8a50
 
Module 5 entering data in worksheet
Module 5 entering data in worksheetModule 5 entering data in worksheet
Module 5 entering data in worksheetDr. Shalini Pandey
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialSpreadsheetTrainer
 
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.pptxSheryldeVilla2
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful TipsParul_100in
 
Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulasSankar Natarajan
 
Excel Intermediate 2007
Excel Intermediate 2007Excel Intermediate 2007
Excel Intermediate 2007simply_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 ExcelJaspal 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 Worksheetdpd
 
Excel useful tips
Excel useful tipsExcel useful tips
Excel useful tipsMohsin Azad
 

Similaire à 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 tips
Excel tipsExcel tips
Excel tips
 
Excel tips
Excel tipsExcel tips
Excel tips
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
 

Plus de simply_coool

Excel Printing Tips2007
Excel Printing Tips2007Excel Printing Tips2007
Excel Printing Tips2007simply_coool
 
Excel Printing Tips
Excel Printing TipsExcel Printing Tips
Excel Printing Tipssimply_coool
 
Excel Intro Part1 2007
Excel Intro Part1 2007Excel Intro Part1 2007
Excel Intro Part1 2007simply_coool
 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007simply_coool
 
Excel Intermediate
Excel IntermediateExcel Intermediate
Excel Intermediatesimply_coool
 
Excel Graphs Charts
Excel Graphs ChartsExcel Graphs Charts
Excel Graphs Chartssimply_coool
 
Excel Formatting 2007
Excel Formatting 2007Excel Formatting 2007
Excel Formatting 2007simply_coool
 
Ethics In Various Religions
Ethics In Various ReligionsEthics In Various Religions
Ethics In Various Religionssimply_coool
 
Intro To BUSINESS ETHICS
Intro To BUSINESS ETHICSIntro To BUSINESS ETHICS
Intro To BUSINESS ETHICSsimply_coool
 
Ethics Of Conserving Depletable Resources
Ethics Of Conserving Depletable ResourcesEthics Of Conserving Depletable Resources
Ethics Of Conserving Depletable Resourcessimply_coool
 
Extent Of Job Discrimination
Extent Of Job DiscriminationExtent Of Job Discrimination
Extent Of Job Discriminationsimply_coool
 
Firm’S Duties To The Employee
Firm’S Duties To The EmployeeFirm’S Duties To The Employee
Firm’S Duties To The Employeesimply_coool
 
Ethics And Values In Business
Ethics And Values In BusinessEthics And Values In Business
Ethics And Values In Businesssimply_coool
 

Plus de 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
 

Dernier

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
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
 
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
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
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
 
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
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
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
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 

Dernier (20)

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
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
 
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
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
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
 
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...
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
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
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.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