SlideShare una empresa de Scribd logo
1 de 7
Descargar para leer sin conexión
For useful Documents like this and Lots of more Educational and Technological Stuff...
Visit... www.thecodexpert.com



                   EXCEL 2003 - 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.

Example below: AVERAGE and SUM are nested functions of IF
=IF(AVERAGE(A2:A5)>50,SUM(B2:B5),0)

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




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.

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.
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




.




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.

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


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


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

Más contenido relacionado

La actualidad más candente

Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulasLearnIT@UD
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basicsguest1c3d8c6
 
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
 
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
 
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
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excelMalika khalil
 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excelMalika khalil
 
10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any JobHitesh Biyani
 
2. mathematical functions in excel
2. mathematical functions in excel2. mathematical functions in excel
2. mathematical functions in excelDr. Prashant Vats
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersStat Analytica
 

La actualidad más candente (20)

Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
 
Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
Excel Formula and Function Basics
Excel Formula and Function BasicsExcel Formula and Function Basics
Excel Formula and Function Basics
 
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
 
Grade 5 Computer
Grade 5 ComputerGrade 5 Computer
Grade 5 Computer
 
Grade 6 Computer
Grade 6 Computer Grade 6 Computer
Grade 6 Computer
 
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
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
MS Excel Tips & Tricks
MS Excel Tips & TricksMS Excel Tips & Tricks
MS Excel Tips & Tricks
 
Cash flow using excel
Cash flow using excelCash flow using excel
Cash flow using excel
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job10 Excel Formulas that will help you in any Job
10 Excel Formulas that will help you in any Job
 
Excel11
Excel11Excel11
Excel11
 
2. mathematical functions in excel
2. mathematical functions in excel2. mathematical functions in excel
2. mathematical functions in excel
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The Beginners
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 

Similar a Excel Formulas Functions

Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
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
 
Excel Intermediate 2007
Excel Intermediate 2007Excel Intermediate 2007
Excel Intermediate 2007simply_coool
 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manualjpdas54
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxssuser3d8a50
 
Learn Advanced Excel Online
Learn Advanced Excel OnlineLearn Advanced Excel Online
Learn Advanced Excel Onlinebigspire
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialSpreadsheetTrainer
 
Pranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheetPranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheetPranaviVerma
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Ramesh Meti
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.pptelsagalgao
 
Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulasSankar Natarajan
 
Intro to Excel Basics: Part I
Intro to Excel Basics: Part IIntro to Excel Basics: Part I
Intro to Excel Basics: Part ISi Krishan
 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007simply_coool
 
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
 
Chapter.05
Chapter.05Chapter.05
Chapter.05klivsie
 

Similar a Excel Formulas Functions (20)

Excel for research
Excel  for researchExcel  for research
Excel for research
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
Module 5 entering data in worksheet
Module 5 entering data in worksheetModule 5 entering data in worksheet
Module 5 entering data in worksheet
 
Excel Intermediate 2007
Excel Intermediate 2007Excel Intermediate 2007
Excel Intermediate 2007
 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manual
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptx
 
Learn Advanced Excel Online
Learn Advanced Excel OnlineLearn Advanced Excel Online
Learn Advanced Excel Online
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
 
Pranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheetPranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheet
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulas
 
Intro to Excel Basics: Part I
Intro to Excel Basics: Part IIntro to Excel Basics: Part I
Intro to Excel Basics: Part I
 
Excel Intro Part2 2007
Excel Intro Part2 2007Excel Intro Part2 2007
Excel Intro Part2 2007
 
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
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 

Más 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 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
 

Más 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 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
 
Codes Of Ethics
Codes Of EthicsCodes Of Ethics
Codes Of Ethics
 

Último

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxcallscotland1987
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
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
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
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
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
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
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
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
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
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
 

Último (20)

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
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
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
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...
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
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
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
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
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
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
 

Excel Formulas Functions

  • 1. For useful Documents like this and Lots of more Educational and Technological Stuff... Visit... www.thecodexpert.com EXCEL 2003 - 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. Example below: AVERAGE and SUM are nested functions of IF =IF(AVERAGE(A2:A5)>50,SUM(B2:B5),0) 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 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. 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. 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 . 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. 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 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 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 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
  • 5. 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
  • 6. 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
  • 7. 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