SlideShare a Scribd company logo
1 of 7
Download to read offline
MS Excel 2010 Formulas
AutoSum and Excel Equations
One of the most powerful features of Excel is its ability to perform basic math functions on
data. Excel can add, subtract, multiply, divide, find the average, and perform general
counting functions on the numerical data that you enter. To enable this feature, highlight all
of the cells in a column, plus one additional empty cell in which to display the result.
Select the AutoSum icon from the ribbon menu:
If you click directly on the ∑, Excel will automatically add up the numbers
you have selected. If you click on the little dropdown arrow next to it
(▼), you will get the full choice of mathematical functions.
If you double-click on the cell in which the answer appears, you will see an equation that
looks something like this (you will also see this equation in the Equation Editor):
Let’s break down what exactly the equation means:
= indicates that you are starting an equation in this cell.
SUM tells the function to be performed. In this case, all the cells will be added together.
( ) The parentheses contain the cells that the function will be performed on.
D2 This is the first cell to be included in the addition formula.
D8 This is the last cell to be included in the addition formula.
: indicates that all cells between the first and the last should be included in the formula.
The spreadsheet will often “select” the cells that it thinks you wish to include. But you
can manually change the cell range by typing into the Equation Editor.
When you are ready to execute the formula, just press the “Enter” key.
Other mathematical functions you can perform from the AutoSum button include:
Average – This function will calculate the average of the selected cells. Count
Numbers – This function simply counts the number of cells selected. Max –
This function will return the highest value of the selected cells.
Min – This function will return the lowest value of the selected cells.
*Remember* Excel equations are similar to programming languages, so have some
patience and if at first you don’t succeed, try again. Even Excel professionals create
incorrect formulas on their first try.
Once you get an equation to work, you will technically be a computer programmer!
Conditional & Logical Functions
Excel has a number of logical functions which allow you to set various “conditions”
and have data respond to them. For example, you may only want a certain calculation
performed or piece of text displayed if certain conditions are met. The functions used
to produce this type of analysis are found in the Insert, Function menu, under the
heading LOGICAL.
If Statements
The IF function is used to analyse data, test whether or not it meets certain
conditions and then act upon its decision. The formula can be entered either by
typing it or by using the Function Library on the formula’s ribbon, the section that
deals with logical functions Typically, the IF statement is accompanied by three
arguments enclosed in one set of parentheses; the condition to be met
(logical_test); the action to be performed if that condition is true (value_if_true); the
action to be performed if false (value_if_false). Each of these is separated by a
comma, as shown;
=IF ( logical_test, value_if_true, value_if_false) To view IF function syntax:
Mouse
1. Click the drop down arrow next to the LOGICAL button in the FUNCTION LIBARY
Groupon the
FORMULAS
Ribbon;
2. A dialog box will appear
3. The three arguments can be seen within the box
Logical Test
This part of the IF statement is the “condition”, or test. You may want to test to see if
a cell is a certain value, or to compare two cells. In these cases, symbols called
LOGICAL OPERATORS are useful;
> Greater
than
< Less
than
> = Greater than or equal to
< = Less than or equal to
= Equal
to
<> Not equal
to
Therefore, a typical logical test might be B1>B2, testing whether or not the value
contained in cell B1 of the spreadsheet is greater than the value in cell B2. Names
can also be included in the logical test, so if cells B1 and B2 were respectively named
SALES and TARGET, the logical test would read SALES>TARGET. Another type of
logical test could include text strings. If you want to check a cell to see if it contains
text, that text string must be included in quotation marks. For example, cell C5
could be tested for the word YES as follows; C5=”YES”.
It should be noted that Excel’s logic is, at times, brutally precise. In the above
example, the logical test is that sales should be greater than target. If sales are equal
to target, the IF statement will return the false value. To make the logical test more
flexible, it would be advisable to use the operator >= to indicate “meeting or
exceeding”.
Value If True / False
Provided that you remember that TRUE value always precedes FALSE value, these
two values can be almost anything. If desired, a simple number could be returned,
a calculation performed, or even a piece of text entered. Also, the type of data
entered can vary depending on whether it is a true or false result. You may want a
calculation if the logical test is true, but a message displayed if false. (Remember that
text to be included in functions should be enclosed in quotes).
Taking the same logical test mentioned above, if the sales figure meets or exceeds the
target, a BONUS is calculated (e.g.2% of sales). If not, no bonus is calculated so a
value of zero is returned. The IF statement in column D of the example reads as
follows;
=IF(B2>=C2,B2*2%,0)
You may, alternatively, want to see a message saying “NO BONUS”. In this case, the true
value will remain the same and the false value will be the text string “NO BONUS”;
= IF(B2>=C2,B2*2%,”NO BONUS”)
A particularly common use of IF statements is to produce “ratings” or “comments” on
figures in a spreadsheet. For this, both the true and false values are text strings. For
example, if a sales figure exceeds a certain amount, a rating of “GOOD” is returned,
otherwise the rating is “POOR”;
=IF(B2>1000,”GOOD”,”POOR”)
Nested If
When you need to have more than one condition and more than two possible
outcomes, a NESTED IF is required. This is based on the same principle as a normal IF
statement, but involves “nesting” a secondary formula inside the main one. The
secondary IF forms the FALSE part of the main statement, as follows;
=IF(1st logic test , 1st true value , IF(2nd logic test , 2nd true value , false value))
Only if both logic tests are found to be false will the false value be returned. Notice that
there are two sets of parentheses, as there are two separate IF statements. This process
can be enlarged to include more conditions and more eventualities - up to seven IF’s
can be nested within the main statement. However, care must be taken to ensure that
the correct number of parentheses are added.
In the example, sales staff could now receive one of three possible ratings;
=IF(B2>1000,”GOOD”,IF(B2<600,”POOR”,”AVERAGE”))
To make the above IF statement more flexible, the logical tests could be amended to
measure sales against cell references instead of figures. In the example, column E has
been used to hold the upper and lower sales thresholds.
=IF(B2>$E$2,”GOOD”,IF(B2<$E$3,”POOR”,”AVERAGE”))
(If the IF statement is to be copied later, this cell reference should be
absolute).
N.B. The depth of nested IF functions has been increased to 64 as previous versions of
excel only nested 7 deep

More Related Content

What's hot

Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functionssimply_coool
 
Understanding excel’s error values
Understanding excel’s error valuesUnderstanding excel’s error values
Understanding excel’s error valuesVijay Perepa
 
Excel SUMIFS Function
Excel SUMIFS FunctionExcel SUMIFS Function
Excel SUMIFS FunctionExcel
 
Excel Data Management
Excel Data ManagementExcel Data Management
Excel Data ManagementRachel Espino
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
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
 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialIlgar Zarbaliyev
 
Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel FunctionsGautam Gupta
 
Microsoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP FunctionMicrosoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP FunctionExcel
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchRakesh Sah
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007simply_coool
 

What's hot (19)

Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
 
AAG_Excel_2010_Formulas_and_Functions
AAG_Excel_2010_Formulas_and_FunctionsAAG_Excel_2010_Formulas_and_Functions
AAG_Excel_2010_Formulas_and_Functions
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functions
 
Excel trick
Excel trickExcel trick
Excel trick
 
Understanding excel’s error values
Understanding excel’s error valuesUnderstanding excel’s error values
Understanding excel’s error values
 
Excel SUMIFS Function
Excel SUMIFS FunctionExcel SUMIFS Function
Excel SUMIFS Function
 
Excel Data Management
Excel Data ManagementExcel Data Management
Excel Data Management
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
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
 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel Tutorial
 
Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel Functions
 
Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
 
Using Formulas in Excel
Using Formulas in ExcelUsing Formulas in Excel
Using Formulas in Excel
 
Microsoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP FunctionMicrosoft Excel VLOOKUP Function
Microsoft Excel VLOOKUP Function
 
Excel11
Excel11Excel11
Excel11
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007
 
Excel
ExcelExcel
Excel
 

Viewers also liked

Viewers also liked (20)

MS Excel 2010 tutorial 4
MS Excel 2010 tutorial 4MS Excel 2010 tutorial 4
MS Excel 2010 tutorial 4
 
MS Excel 2010 tutorial 2
MS Excel 2010 tutorial 2MS Excel 2010 tutorial 2
MS Excel 2010 tutorial 2
 
MS Excel 2010 tutorial 3
MS Excel 2010 tutorial 3MS Excel 2010 tutorial 3
MS Excel 2010 tutorial 3
 
A practical tutorial to excel
A practical tutorial to excelA practical tutorial to excel
A practical tutorial to excel
 
An Interactive Dashboard - Part I
An Interactive Dashboard - Part IAn Interactive Dashboard - Part I
An Interactive Dashboard - Part I
 
Excel tutorial 1 (basic functions)
Excel tutorial 1 (basic functions)Excel tutorial 1 (basic functions)
Excel tutorial 1 (basic functions)
 
MS Excel 2010 tutorial 6
MS Excel 2010 tutorial 6MS Excel 2010 tutorial 6
MS Excel 2010 tutorial 6
 
Ms excel 2007 tutorial
Ms excel 2007 tutorialMs excel 2007 tutorial
Ms excel 2007 tutorial
 
Excel Tutorial
Excel TutorialExcel Tutorial
Excel Tutorial
 
Ms access tutorial
Ms access tutorialMs access tutorial
Ms access tutorial
 
Microsoft Excel 2007 Tutorial
Microsoft Excel 2007 TutorialMicrosoft Excel 2007 Tutorial
Microsoft Excel 2007 Tutorial
 
Advances in ms excel
Advances in ms excelAdvances in ms excel
Advances in ms excel
 
Excel slide show
Excel slide showExcel slide show
Excel slide show
 
View Tab in Ms-Excel
View Tab in Ms-ExcelView Tab in Ms-Excel
View Tab in Ms-Excel
 
50 MS Excel Tips and Tricks
50 MS Excel Tips and Tricks 50 MS Excel Tips and Tricks
50 MS Excel Tips and Tricks
 
An Interactive Dashboard - Part 2
An Interactive Dashboard - Part 2An Interactive Dashboard - Part 2
An Interactive Dashboard - Part 2
 
Excel tutorial
Excel tutorialExcel tutorial
Excel tutorial
 
A Quick Simple MS Excel Dashboard
A Quick Simple MS Excel DashboardA Quick Simple MS Excel Dashboard
A Quick Simple MS Excel Dashboard
 
A Quick Simple MS Excel Macro
A Quick Simple MS Excel MacroA Quick Simple MS Excel Macro
A Quick Simple MS Excel Macro
 
Ms excel 2007
Ms excel 2007Ms excel 2007
Ms excel 2007
 

Similar to MS Excel 2010 tutorial 5

03 Logical functions.pdf
03 Logical functions.pdf03 Logical functions.pdf
03 Logical functions.pdfRizwanAli988729
 
(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx
(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx
(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docxmayank272369
 
ICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - TutorialICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - TutorialMichael Lew
 
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
 
Manual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in ExcelManual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in ExcelChristopher Ward
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowAlexHenderson59
 
Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statisticszavenger
 
IMPORTRANGE-1.pptx
IMPORTRANGE-1.pptxIMPORTRANGE-1.pptx
IMPORTRANGE-1.pptxKetanSehdev3
 
Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.pptelsagalgao
 
Lisa Donaldson Notes
Lisa Donaldson NotesLisa Donaldson Notes
Lisa Donaldson NotesIBAT College
 
Empowerment Technology Lesson 4
Empowerment Technology Lesson 4Empowerment Technology Lesson 4
Empowerment Technology Lesson 4alicelagajino
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functionsricsanmae
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Ramesh Meti
 

Similar to MS Excel 2010 tutorial 5 (20)

03 Logical functions.pdf
03 Logical functions.pdf03 Logical functions.pdf
03 Logical functions.pdf
 
(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx
(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx
(Ali)Excel Worksheet.xlsxSheet1Excel Homework 2 Directions.docx
 
ICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - TutorialICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - Tutorial
 
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
 
Manual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in ExcelManual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in Excel
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must know
 
Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
 
IMPORTRANGE-1.pptx
IMPORTRANGE-1.pptxIMPORTRANGE-1.pptx
IMPORTRANGE-1.pptx
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
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 tips and tricks you should try
Excel tips and tricks you should tryExcel tips and tricks you should try
Excel tips and tricks you should try
 
Lisa Donaldson Notes
Lisa Donaldson NotesLisa Donaldson Notes
Lisa Donaldson Notes
 
Empowerment Technology Lesson 4
Empowerment Technology Lesson 4Empowerment Technology Lesson 4
Empowerment Technology Lesson 4
 
stats
statsstats
stats
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functions
 
Print9
Print9Print9
Print9
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
 

More from Khalfan Alshuaili

More from Khalfan Alshuaili (20)

MS Word 2010 tutorial 6
MS Word 2010 tutorial 6MS Word 2010 tutorial 6
MS Word 2010 tutorial 6
 
MS Excel 2010 tutorial 1
MS Excel 2010 tutorial 1MS Excel 2010 tutorial 1
MS Excel 2010 tutorial 1
 
MS Word 2010 tutorial 5
MS Word 2010 tutorial 5MS Word 2010 tutorial 5
MS Word 2010 tutorial 5
 
MS Word 2010 tutorial 4
MS Word 2010 tutorial 4MS Word 2010 tutorial 4
MS Word 2010 tutorial 4
 
MS Word 2010 tutorial 3
MS Word 2010 tutorial 3MS Word 2010 tutorial 3
MS Word 2010 tutorial 3
 
MS Word 2010 tutorial 2
MS Word 2010 tutorial 2MS Word 2010 tutorial 2
MS Word 2010 tutorial 2
 
MS Word 2010 tutorial 1
MS Word 2010 tutorial 1MS Word 2010 tutorial 1
MS Word 2010 tutorial 1
 
MS PowerPoint 2010 tutorial 6
MS PowerPoint 2010 tutorial 6MS PowerPoint 2010 tutorial 6
MS PowerPoint 2010 tutorial 6
 
MS PowerPoint 2010 tutorial 5
MS PowerPoint 2010 tutorial 5MS PowerPoint 2010 tutorial 5
MS PowerPoint 2010 tutorial 5
 
MS PowerPoint 2010 tutorial 4
MS PowerPoint 2010 tutorial 4MS PowerPoint 2010 tutorial 4
MS PowerPoint 2010 tutorial 4
 
MS PowerPoint 2010 tutorial 3
MS PowerPoint 2010 tutorial 3MS PowerPoint 2010 tutorial 3
MS PowerPoint 2010 tutorial 3
 
MS PowerPoint 2010 tutorial 2
MS PowerPoint 2010 tutorial 2MS PowerPoint 2010 tutorial 2
MS PowerPoint 2010 tutorial 2
 
MS PowerPoint 2010 tutorial 1
MS PowerPoint 2010 tutorial 1MS PowerPoint 2010 tutorial 1
MS PowerPoint 2010 tutorial 1
 
MS Access 2010 tutorial 6
MS Access 2010 tutorial 6MS Access 2010 tutorial 6
MS Access 2010 tutorial 6
 
MS Access 2010 tutorial 5
MS Access 2010 tutorial 5MS Access 2010 tutorial 5
MS Access 2010 tutorial 5
 
MS Access 2010 tutorial 4
MS Access 2010 tutorial 4MS Access 2010 tutorial 4
MS Access 2010 tutorial 4
 
MS Access 2010 tutorial 3
MS Access 2010 tutorial 3MS Access 2010 tutorial 3
MS Access 2010 tutorial 3
 
MS Access 2010 tutorial 2
MS Access 2010 tutorial 2MS Access 2010 tutorial 2
MS Access 2010 tutorial 2
 
MS Access 2010 tutorial 1
MS Access 2010 tutorial 1MS Access 2010 tutorial 1
MS Access 2010 tutorial 1
 
Impact of web ct on learning
Impact of  web ct on learningImpact of  web ct on learning
Impact of web ct on learning
 

Recently uploaded

18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 

Recently uploaded (20)

18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 

MS Excel 2010 tutorial 5

  • 1. MS Excel 2010 Formulas AutoSum and Excel Equations One of the most powerful features of Excel is its ability to perform basic math functions on data. Excel can add, subtract, multiply, divide, find the average, and perform general counting functions on the numerical data that you enter. To enable this feature, highlight all of the cells in a column, plus one additional empty cell in which to display the result. Select the AutoSum icon from the ribbon menu: If you click directly on the ∑, Excel will automatically add up the numbers you have selected. If you click on the little dropdown arrow next to it (▼), you will get the full choice of mathematical functions. If you double-click on the cell in which the answer appears, you will see an equation that looks something like this (you will also see this equation in the Equation Editor): Let’s break down what exactly the equation means: = indicates that you are starting an equation in this cell. SUM tells the function to be performed. In this case, all the cells will be added together. ( ) The parentheses contain the cells that the function will be performed on. D2 This is the first cell to be included in the addition formula. D8 This is the last cell to be included in the addition formula. : indicates that all cells between the first and the last should be included in the formula. The spreadsheet will often “select” the cells that it thinks you wish to include. But you can manually change the cell range by typing into the Equation Editor.
  • 2. When you are ready to execute the formula, just press the “Enter” key. Other mathematical functions you can perform from the AutoSum button include: Average – This function will calculate the average of the selected cells. Count Numbers – This function simply counts the number of cells selected. Max – This function will return the highest value of the selected cells. Min – This function will return the lowest value of the selected cells. *Remember* Excel equations are similar to programming languages, so have some patience and if at first you don’t succeed, try again. Even Excel professionals create incorrect formulas on their first try. Once you get an equation to work, you will technically be a computer programmer!
  • 3. Conditional & Logical Functions Excel has a number of logical functions which allow you to set various “conditions” and have data respond to them. For example, you may only want a certain calculation performed or piece of text displayed if certain conditions are met. The functions used to produce this type of analysis are found in the Insert, Function menu, under the heading LOGICAL. If Statements The IF function is used to analyse data, test whether or not it meets certain conditions and then act upon its decision. The formula can be entered either by typing it or by using the Function Library on the formula’s ribbon, the section that deals with logical functions Typically, the IF statement is accompanied by three arguments enclosed in one set of parentheses; the condition to be met (logical_test); the action to be performed if that condition is true (value_if_true); the action to be performed if false (value_if_false). Each of these is separated by a comma, as shown;
  • 4. =IF ( logical_test, value_if_true, value_if_false) To view IF function syntax: Mouse 1. Click the drop down arrow next to the LOGICAL button in the FUNCTION LIBARY Groupon the FORMULAS Ribbon; 2. A dialog box will appear 3. The three arguments can be seen within the box
  • 5. Logical Test This part of the IF statement is the “condition”, or test. You may want to test to see if a cell is a certain value, or to compare two cells. In these cases, symbols called LOGICAL OPERATORS are useful; > Greater than < Less than > = Greater than or equal to < = Less than or equal to = Equal to <> Not equal to Therefore, a typical logical test might be B1>B2, testing whether or not the value contained in cell B1 of the spreadsheet is greater than the value in cell B2. Names can also be included in the logical test, so if cells B1 and B2 were respectively named SALES and TARGET, the logical test would read SALES>TARGET. Another type of logical test could include text strings. If you want to check a cell to see if it contains text, that text string must be included in quotation marks. For example, cell C5 could be tested for the word YES as follows; C5=”YES”. It should be noted that Excel’s logic is, at times, brutally precise. In the above example, the logical test is that sales should be greater than target. If sales are equal to target, the IF statement will return the false value. To make the logical test more flexible, it would be advisable to use the operator >= to indicate “meeting or exceeding”. Value If True / False Provided that you remember that TRUE value always precedes FALSE value, these two values can be almost anything. If desired, a simple number could be returned, a calculation performed, or even a piece of text entered. Also, the type of data entered can vary depending on whether it is a true or false result. You may want a calculation if the logical test is true, but a message displayed if false. (Remember that text to be included in functions should be enclosed in quotes).
  • 6. Taking the same logical test mentioned above, if the sales figure meets or exceeds the target, a BONUS is calculated (e.g.2% of sales). If not, no bonus is calculated so a value of zero is returned. The IF statement in column D of the example reads as follows; =IF(B2>=C2,B2*2%,0) You may, alternatively, want to see a message saying “NO BONUS”. In this case, the true value will remain the same and the false value will be the text string “NO BONUS”; = IF(B2>=C2,B2*2%,”NO BONUS”) A particularly common use of IF statements is to produce “ratings” or “comments” on figures in a spreadsheet. For this, both the true and false values are text strings. For example, if a sales figure exceeds a certain amount, a rating of “GOOD” is returned, otherwise the rating is “POOR”; =IF(B2>1000,”GOOD”,”POOR”) Nested If When you need to have more than one condition and more than two possible outcomes, a NESTED IF is required. This is based on the same principle as a normal IF statement, but involves “nesting” a secondary formula inside the main one. The
  • 7. secondary IF forms the FALSE part of the main statement, as follows; =IF(1st logic test , 1st true value , IF(2nd logic test , 2nd true value , false value)) Only if both logic tests are found to be false will the false value be returned. Notice that there are two sets of parentheses, as there are two separate IF statements. This process can be enlarged to include more conditions and more eventualities - up to seven IF’s can be nested within the main statement. However, care must be taken to ensure that the correct number of parentheses are added. In the example, sales staff could now receive one of three possible ratings; =IF(B2>1000,”GOOD”,IF(B2<600,”POOR”,”AVERAGE”)) To make the above IF statement more flexible, the logical tests could be amended to measure sales against cell references instead of figures. In the example, column E has been used to hold the upper and lower sales thresholds. =IF(B2>$E$2,”GOOD”,IF(B2<$E$3,”POOR”,”AVERAGE”)) (If the IF statement is to be copied later, this cell reference should be absolute). N.B. The depth of nested IF functions has been increased to 64 as previous versions of excel only nested 7 deep