SlideShare a Scribd company logo
1 of 8
Download to read offline
1
Excel Formulas & Functions
Tips & Techniques
Excel makes use of formulas (mathematical expressions that you
create) and functions (mathematical expressions already available
in Excel) to dynamically calculate results from data in your
worksheets.
Constructing a formula
• To start entering a formula in a cell, click in that cell and
then type the formula. Type return or tab to move to the
next cell when you have finished entering the formula.
• All formulas begin with the = symbol.
• All formulas use the following mathematical operators:
o * multiplication
o / division
o + addition
o - subtraction
• Formulas containing numbers will produce a result that
will not ever change.
o The formula =3*8 produces the result 24.
• However, a formula containing cell references produces a
result that may change if the data in those cells changes.
o The formula =C3+D3 will produce a result based
upon the data in cells C3 and D3.
2
Using the order of mathematical operations
All formulas utilize the standard mathematical order of operations
when calculating results.
• If a part of a formula is in parentheses, that part will always
be calculated before the rest of the formula.
o The formula =(B2*C2)-A3 will subtract data in cell
A3 from the multiplied product of cells B2 and C2.
• After expressions in parentheses, Excel will calculate your
formula using the math operators in the following order
o Multiplication
o Division
o Addition
o Subtraction
• In other words, Excel will begin to parse your formula
starting with any multiplication and division. Once this is
complete, Excel will add and subtract the remainder of
your formula.
Inserting a function
Each of Excel’s functions is a predefined formula, and most act on
a range of cells that you select. (Excel refers to each range of cells
in the function as an argument.) Although a few functions do not
use arguments, most have one or more and some complex
functions use as many as 3 or 4 arguments. Excel provides a Paste
Function window to simplify the process of inserting functions
into your worksheets and eliminate the need to remember the exact
syntax of each function.
• Select the cell into which you want to insert a function.
• From the Insert menu, choose Function. Alternatively,
you can click on the Paste Function button on the standard
toolbar.
3
• In the Paste Function window, click on the function
category containing the function you want. Next, click on
the name of the function you wish to insert. Once you
have selected a function, click OK.
• Next, Excel will display a syntax window to help you
construct the function. From this window, first click on the
collapse button (labeled with a red arrow) to the right of
the box labeled Number1 or Value1 (depending on the
function you chose to insert).
• Drag to select the range of cells to be included as the
function’s first argument. Type enter.
• To insert additional arguments into the function, follow this
process using the other Number boxes in the syntax
window.
• When you have finished, click OK in the syntax window
to insert the function into your worksheet.
4
Searching for help on functions
From the Paste Function window, Excel offers help on a function
that you have selected as well as help finding the function that will
perform a task you describe.
Getting help on a specific function
• To get help on a specific function, click on the function’s
name at the right of the Paste Function window and then
click on the Help button at the window’s lower left.
• Click on Help with this feature in the yellow callout box
that appears, and then click on Help on selected function
in the callout box that appears next. Excel will display its
Help topic on the function that you selected.
5
Finding a function
• From the Paste Function window, click on the Help button
in the lower left corner, and then click on Help with this
feature in the yellow callout box that appears.
• In the box at the bottom of the next yellow callout box,
type a description of the calculation you wish to perform.
Click on Search.
• Excel will display a list of functions that may meet your
criteria in the Recommended list at the right of the Paste
Function window. To learn more about one of these
functions, click on its name and then click Help on
selected function.
6
Using functions with external data
Although most functions utilize data on the same worksheet, you
can also use data on other worksheets or in other. In this way, you
can consolidate data from multiple sources into an executive
summary.
• Before beginning, open any workbooks that contain data
to be used in your function.
• Select the cell into which you want to insert a function.
• Open the Paste Function window, click on the name of
the function you wish to insert, and click OK.
• Collapse the gray syntax window, using the collapse
button (labeled with a red arrow).
• Navigate so that the worksheet or workbook containing
your data is visible on your screen.
• Drag to select the range of cells to be included as the
function’s first argument. Type enter.
• Excel will insert the reference to the cells that you selected
(including the name of the external worksheet and
workbook) into your function. Click OK to finish your
function.
Tip: Naming external data ranges
When you select a range of cells on an external worksheet, Excel
will add the name of your external worksheet to the cell range
reference that it creates. In the example above, Excel refers to the
selected cells (from the expenses worksheet) as expenses!D5:D15.
If those cells were in an external workbook, the name of that
workbook would preface the worksheet name. In general,
references to external data look like this:
[workbook name.xls]worksheet name!C1:C34
7
Tip: Using external data in formulas
Use this technique to insert external data in your formulas, as well.
When creating a formula, navigate to the external worksheet
containing your and click to select that cell’s data for use in your
formula. Excel will automatically insert the correct cell reference
(including the worksheet and workbook names) into your formula.
Function Cheat Sheet
Functions Description Syntax Example
Functions without arguments
Rand Generates a
random number
between 0 and 1
=Rand() =Rand()*3;
(generates a random
number between 0
and 3)
Pi Generates the
value of pi to 14
decminal places
=Pi() =Pi()
Functions with 1 argument
Average Produces the
average of the
data in a range of
cells
=average(Cx:Cy) =average(C1:C12)
Max Produces the
greatest value in a
column of cells
=max(Cx:Cy) =max(C1:C12)
Hour Returns the
number of hours
past midnight for
the specified time
=hour(Cx)
=hour(time)
=hour(A34)
=hour(1:35 PM)
Minute Returns the
number of minutes
past the hour for
the specified time
=minute (Cx)
=minute (time)
=minute(A34)
=minute(1:35 PM)
Sqrt Produces the
square root of its
argument
=sqrt(Cx)
=sqrt(number)
=sqrt(Cx)
=sqrt(9)
Functions with 2 arguments
Round Rounds a value to
a specified digit to
the left or right of
the decimal point
=round(Cx, number)
=round (value,
number)
=round(A22, 2);
(rounds to 2 decimal
places)
=round (123.45,0);
(rounds to 0 decimal
places)
Countif Counts the number
of cells in a range
that meet a
specified criteria
=countif(Cx:Cy,
“>criteria”)
=countif(C1:C12,
“>150”)
8
Functions Description Syntax Example
Functions with 3 arguments
If Provides the
basis for a
decision; if
condition is
met, one
answer is
returned; if
condition is not
met, another
answer is
returned
=if(condition,“a
nswer1”,
”answer2)
=if(A1>0,”yes”,”no); if the value
of A1 is positive, Excel returns
the answer “yes”; otherwise,
Excel returns the answer “no”
Sumif Produces the
sum of the cells
in a range if
any cells in a
second range
meet a
selection
criterion
=sumif(Cx:Cy,c
riterion,Dx:Dy)
Cx:Cy: the
range of cells to
meet the
criterion
Dx:Dy: the
range of cells
from which sum
will be
calculated
=sumif(C1:C12, >150,D1:D12)
Functions with one or more arguments
And Returns a
logical TRUE
response if all
of its arguments
are true;
otherwise
returns false
=and(condition
1,condition2,
condition3…)
=and(A1>0,A2>1,A3>3)
Or Returns a
logical TRUE
response if one
or more
arguments are
true; otherwise
returns false
=or(condition1,
condition2,
condition3…)
=or(A1>70,A1<80)
Sum Totals the data
in a column of
cells
=sum(Cx:Cy,Dx
,Dy)
=sum(C1:C12)
Referencing a range of cells….
• In other worksheets: worksheet!A1:D4
• In other workbook: c:my documents[test.xls]Sheet1!A2:A5
• Across several worksheets: sheet1:sheet5!A12

More Related Content

What's hot

Excel IF function
Excel IF functionExcel IF function
Excel IF functionHtay Aung
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
Microsoft Excel Project 1 Presentation
Microsoft Excel Project 1 PresentationMicrosoft Excel Project 1 Presentation
Microsoft Excel Project 1 Presentationjmartinvvc
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Ramesh Meti
 
Excel%20basic%202 123
Excel%20basic%202 123Excel%20basic%202 123
Excel%20basic%202 123Ramesh Meti
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functionssimply_coool
 
Management productivity tools1
Management productivity tools1Management productivity tools1
Management productivity tools1Hari Krishnan
 
Vlookup - an introduction
Vlookup - an introductionVlookup - an introduction
Vlookup - an introductionvvmenon22
 
Excel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a ListExcel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a ListMerve Nur Taş
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007simply_coool
 
Worksheet Basics & Navigation - Excel 2013 Tutorial
Worksheet Basics & Navigation - Excel 2013 TutorialWorksheet Basics & Navigation - Excel 2013 Tutorial
Worksheet Basics & Navigation - Excel 2013 TutorialSpreadsheetTrainer
 
Excel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP FunctionsExcel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP FunctionsMerve Nur Taş
 
PPT On Microsoft Excel 2007 Full Information.
PPT On Microsoft Excel 2007 Full Information.PPT On Microsoft Excel 2007 Full Information.
PPT On Microsoft Excel 2007 Full Information.Umesh Kumar
 

What's hot (20)

Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
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
 
Exel
ExelExel
Exel
 
Microsoft Excel Project 1 Presentation
Microsoft Excel Project 1 PresentationMicrosoft Excel Project 1 Presentation
Microsoft Excel Project 1 Presentation
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
 
Excel%20basic%202 123
Excel%20basic%202 123Excel%20basic%202 123
Excel%20basic%202 123
 
Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
 
Excel Formulas Functions
Excel Formulas FunctionsExcel Formulas Functions
Excel Formulas Functions
 
Management productivity tools1
Management productivity tools1Management productivity tools1
Management productivity tools1
 
Vlookup - an introduction
Vlookup - an introductionVlookup - an introduction
Vlookup - an introduction
 
Ms excel
Ms excelMs excel
Ms excel
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 
Quicktip excel
Quicktip excelQuicktip excel
Quicktip excel
 
Excel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a ListExcel Tutorials - Random Value Selection from a List
Excel Tutorials - Random Value Selection from a List
 
How to Use VLOOKUP in Excel
How to Use VLOOKUP in ExcelHow to Use VLOOKUP in Excel
How to Use VLOOKUP in Excel
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007
 
Worksheet Basics & Navigation - Excel 2013 Tutorial
Worksheet Basics & Navigation - Excel 2013 TutorialWorksheet Basics & Navigation - Excel 2013 Tutorial
Worksheet Basics & Navigation - Excel 2013 Tutorial
 
Excel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP FunctionsExcel Tutorials - VLOOKUP and HLOOKUP Functions
Excel Tutorials - VLOOKUP and HLOOKUP Functions
 
PPT On Microsoft Excel 2007 Full Information.
PPT On Microsoft Excel 2007 Full Information.PPT On Microsoft Excel 2007 Full Information.
PPT On Microsoft Excel 2007 Full Information.
 

Viewers also liked

Cash Flow - Excel Spreadsheet Template
Cash Flow - Excel Spreadsheet Template Cash Flow - Excel Spreadsheet Template
Cash Flow - Excel Spreadsheet Template Simon Misiewicz
 
Target Audience Questionnaire Analysis
Target Audience Questionnaire AnalysisTarget Audience Questionnaire Analysis
Target Audience Questionnaire Analysiskayleysalter
 
Organising business field trips for operations management students
Organising business field trips for operations management studentsOrganising business field trips for operations management students
Organising business field trips for operations management studentsThe Higher Education Academy
 
Consolidated cash flow statement
Consolidated cash flow statementConsolidated cash flow statement
Consolidated cash flow statementfarahm3d
 
Cash flow statements
Cash flow statementsCash flow statements
Cash flow statementsAdil Shaikh
 
Consolidated statement of financial position
Consolidated statement of financial positionConsolidated statement of financial position
Consolidated statement of financial positionShiela Mae Castrodes
 
Financial Report of Apple Inc. 2014
Financial Report of Apple Inc. 2014Financial Report of Apple Inc. 2014
Financial Report of Apple Inc. 2014Arpit Jain
 
Internal auditing for “one & all” (second edition)
Internal auditing for “one & all” (second edition)Internal auditing for “one & all” (second edition)
Internal auditing for “one & all” (second edition)Mohammad Wahid Abdullah Khan
 
Literature Review (Review of Related Literature - Research Methodology)
Literature Review (Review of Related Literature - Research Methodology)Literature Review (Review of Related Literature - Research Methodology)
Literature Review (Review of Related Literature - Research Methodology)Dilip Barad
 
Whittington -principles of auditing 19e
Whittington -principles of auditing 19eWhittington -principles of auditing 19e
Whittington -principles of auditing 19ecloutt
 
SM Lecture One : Introducing Strategy
SM Lecture One : Introducing StrategySM Lecture One : Introducing Strategy
SM Lecture One : Introducing StrategyStratMgt Advisor
 
Basic Internal Auditing Presentation
Basic Internal Auditing PresentationBasic Internal Auditing Presentation
Basic Internal Auditing PresentationVernon Benjamin
 
Internal audit procedure
Internal audit procedureInternal audit procedure
Internal audit procedurebhavikjariwala
 
Audit Process, Audit Procedures, Audit Planning, Auditing
Audit Process, Audit Procedures, Audit Planning, AuditingAudit Process, Audit Procedures, Audit Planning, Auditing
Audit Process, Audit Procedures, Audit Planning, AuditingAdvance Business Consulting
 

Viewers also liked (20)

Seminar 6
Seminar 6  Seminar 6
Seminar 6
 
Cash Flow - Excel Spreadsheet Template
Cash Flow - Excel Spreadsheet Template Cash Flow - Excel Spreadsheet Template
Cash Flow - Excel Spreadsheet Template
 
Target Audience Questionnaire Analysis
Target Audience Questionnaire AnalysisTarget Audience Questionnaire Analysis
Target Audience Questionnaire Analysis
 
Organising business field trips for operations management students
Organising business field trips for operations management studentsOrganising business field trips for operations management students
Organising business field trips for operations management students
 
Acc4201#7
Acc4201#7Acc4201#7
Acc4201#7
 
Consolidated cash flow statement
Consolidated cash flow statementConsolidated cash flow statement
Consolidated cash flow statement
 
Cash flow statements
Cash flow statementsCash flow statements
Cash flow statements
 
Consolidated statement of financial position
Consolidated statement of financial positionConsolidated statement of financial position
Consolidated statement of financial position
 
Keyboard Shortcuts
Keyboard ShortcutsKeyboard Shortcuts
Keyboard Shortcuts
 
CIMA-F2-Consolidated Financial Statements
CIMA-F2-Consolidated Financial StatementsCIMA-F2-Consolidated Financial Statements
CIMA-F2-Consolidated Financial Statements
 
Financial Report of Apple Inc. 2014
Financial Report of Apple Inc. 2014Financial Report of Apple Inc. 2014
Financial Report of Apple Inc. 2014
 
Internal auditing for “one & all” (second edition)
Internal auditing for “one & all” (second edition)Internal auditing for “one & all” (second edition)
Internal auditing for “one & all” (second edition)
 
Questionnaire
QuestionnaireQuestionnaire
Questionnaire
 
Internal audit ppt
Internal audit pptInternal audit ppt
Internal audit ppt
 
Literature Review (Review of Related Literature - Research Methodology)
Literature Review (Review of Related Literature - Research Methodology)Literature Review (Review of Related Literature - Research Methodology)
Literature Review (Review of Related Literature - Research Methodology)
 
Whittington -principles of auditing 19e
Whittington -principles of auditing 19eWhittington -principles of auditing 19e
Whittington -principles of auditing 19e
 
SM Lecture One : Introducing Strategy
SM Lecture One : Introducing StrategySM Lecture One : Introducing Strategy
SM Lecture One : Introducing Strategy
 
Basic Internal Auditing Presentation
Basic Internal Auditing PresentationBasic Internal Auditing Presentation
Basic Internal Auditing Presentation
 
Internal audit procedure
Internal audit procedureInternal audit procedure
Internal audit procedure
 
Audit Process, Audit Procedures, Audit Planning, Auditing
Audit Process, Audit Procedures, Audit Planning, AuditingAudit Process, Audit Procedures, Audit Planning, Auditing
Audit Process, Audit Procedures, Audit Planning, Auditing
 

Similar to Excel formulas-manual

Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulasSankar Natarajan
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxEdwinAdeolaOluwasina1
 
MS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptxMS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptxshagunjain2k22phdcs0
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excelMalika khalil
 
Pranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheetPranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheetPranaviVerma
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsP. SUNDARI ARUN
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialSpreadsheetTrainer
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
introductiontospreadsheetapplications-200127165949.pptx
introductiontospreadsheetapplications-200127165949.pptxintroductiontospreadsheetapplications-200127165949.pptx
introductiontospreadsheetapplications-200127165949.pptxAbhimanyu Verma
 
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
 
22-excel-basics-15511.ppt
22-excel-basics-15511.ppt22-excel-basics-15511.ppt
22-excel-basics-15511.ppt20ArnavKumar8F
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basicsjeshin jose
 
Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginnersJitesh Khushalani
 
Excel_Breif_Overview.pptx
Excel_Breif_Overview.pptxExcel_Breif_Overview.pptx
Excel_Breif_Overview.pptxNitish Nagar
 
ms excel for mba first sem students of dr hs gour university sagar(m.p)
ms excel for mba first sem students of dr hs gour university sagar(m.p)ms excel for mba first sem students of dr hs gour university sagar(m.p)
ms excel for mba first sem students of dr hs gour university sagar(m.p)gaurav jain
 
Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsSmart Chicago Collaborative
 
Focusing on specific data by using filterss
Focusing on specific data by using filterssFocusing on specific data by using filterss
Focusing on specific data by using filterssum5ashm
 

Similar to Excel formulas-manual (20)

Excel 2007-functions-formulas
Excel 2007-functions-formulasExcel 2007-functions-formulas
Excel 2007-functions-formulas
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptx
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
MS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptxMS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptx
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
Pranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheetPranavi verma-class-9-spreadsheet
Pranavi verma-class-9-spreadsheet
 
Tech training workshop 3 final 090810
Tech training   workshop 3 final 090810Tech training   workshop 3 final 090810
Tech training workshop 3 final 090810
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and Functions
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
introductiontospreadsheetapplications-200127165949.pptx
introductiontospreadsheetapplications-200127165949.pptxintroductiontospreadsheetapplications-200127165949.pptx
introductiontospreadsheetapplications-200127165949.pptx
 
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
 
22-excel-basics-15511.ppt
22-excel-basics-15511.ppt22-excel-basics-15511.ppt
22-excel-basics-15511.ppt
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basics
 
MS Excel 2013
MS Excel 2013MS Excel 2013
MS Excel 2013
 
Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginners
 
Excel_Breif_Overview.pptx
Excel_Breif_Overview.pptxExcel_Breif_Overview.pptx
Excel_Breif_Overview.pptx
 
ms excel for mba first sem students of dr hs gour university sagar(m.p)
ms excel for mba first sem students of dr hs gour university sagar(m.p)ms excel for mba first sem students of dr hs gour university sagar(m.p)
ms excel for mba first sem students of dr hs gour university sagar(m.p)
 
Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding Functions
 
Focusing on specific data by using filterss
Focusing on specific data by using filterssFocusing on specific data by using filterss
Focusing on specific data by using filterss
 

Recently uploaded

如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一ga6c6bdl
 
(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /WhatsappsBeautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsappssapnasaifi408
 
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...Pooja Nehwal
 
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》o8wvnojp
 
(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...
(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...
(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...ranjana rawat
 
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Presentation.pptxjnfoigneoifnvoeifnvklfnvf
Presentation.pptxjnfoigneoifnvoeifnvklfnvfPresentation.pptxjnfoigneoifnvoeifnvklfnvf
Presentation.pptxjnfoigneoifnvoeifnvklfnvfchapmanellie27
 
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | DelhiFULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhisoniya singh
 
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一ss ss
 
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...srsj9000
 
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样qaffana
 
Dubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai WisteriaDubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai WisteriaUnited Arab Emirates
 
如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一
如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一
如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一ga6c6bdl
 
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up NumberCall Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up NumberMs Riya
 
《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...
《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...
《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...ur8mqw8e
 
VIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service Saharanpur
VIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service SaharanpurVIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service Saharanpur
VIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service SaharanpurSuhani Kapoor
 

Recently uploaded (20)

如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一
如何办理(UCLA毕业证书)加州大学洛杉矶分校毕业证成绩单留信学历认证原版一比一
 
(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(ANIKA) Wanwadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /WhatsappsBeautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
 
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
Call Girls in Thane 9892124323, Vashi cAll girls Serivces Juhu Escorts, powai...
 
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
 
9953330565 Low Rate Call Girls In Jahangirpuri Delhi NCR
9953330565 Low Rate Call Girls In Jahangirpuri  Delhi NCR9953330565 Low Rate Call Girls In Jahangirpuri  Delhi NCR
9953330565 Low Rate Call Girls In Jahangirpuri Delhi NCR
 
(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...
(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...
(MEGHA) Hinjewadi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune E...
 
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
(ZARA) Call Girls Jejuri ( 7001035870 ) HI-Fi Pune Escorts Service
 
Presentation.pptxjnfoigneoifnvoeifnvklfnvf
Presentation.pptxjnfoigneoifnvoeifnvklfnvfPresentation.pptxjnfoigneoifnvoeifnvklfnvf
Presentation.pptxjnfoigneoifnvoeifnvklfnvf
 
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | DelhiFULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
FULL ENJOY - 8264348440 Call Girls in Hauz Khas | Delhi
 
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
 
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
 
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
 
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
哪里办理美国宾夕法尼亚州立大学毕业证(本硕)psu成绩单原版一模一样
 
Low rate Call girls in Delhi Justdial | 9953330565
Low rate Call girls in Delhi Justdial | 9953330565Low rate Call girls in Delhi Justdial | 9953330565
Low rate Call girls in Delhi Justdial | 9953330565
 
Dubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai WisteriaDubai Call Girls O528786472 Call Girls In Dubai Wisteria
Dubai Call Girls O528786472 Call Girls In Dubai Wisteria
 
如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一
如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一
如何办理(NUS毕业证书)新加坡国立大学毕业证成绩单留信学历认证原版一比一
 
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up NumberCall Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
Call Girls Delhi {Rs-10000 Laxmi Nagar] 9711199012 Whats Up Number
 
《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...
《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...
《伯明翰城市大学毕业证成绩单购买》学历证书学位证书区别《复刻原版1:1伯明翰城市大学毕业证书|修改BCU成绩单PDF版》Q微信741003700《BCU学...
 
VIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service Saharanpur
VIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service SaharanpurVIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service Saharanpur
VIP Call Girl Saharanpur Aashi 8250192130 Independent Escort Service Saharanpur
 

Excel formulas-manual

  • 1. 1 Excel Formulas & Functions Tips & Techniques Excel makes use of formulas (mathematical expressions that you create) and functions (mathematical expressions already available in Excel) to dynamically calculate results from data in your worksheets. Constructing a formula • To start entering a formula in a cell, click in that cell and then type the formula. Type return or tab to move to the next cell when you have finished entering the formula. • All formulas begin with the = symbol. • All formulas use the following mathematical operators: o * multiplication o / division o + addition o - subtraction • Formulas containing numbers will produce a result that will not ever change. o The formula =3*8 produces the result 24. • However, a formula containing cell references produces a result that may change if the data in those cells changes. o The formula =C3+D3 will produce a result based upon the data in cells C3 and D3.
  • 2. 2 Using the order of mathematical operations All formulas utilize the standard mathematical order of operations when calculating results. • If a part of a formula is in parentheses, that part will always be calculated before the rest of the formula. o The formula =(B2*C2)-A3 will subtract data in cell A3 from the multiplied product of cells B2 and C2. • After expressions in parentheses, Excel will calculate your formula using the math operators in the following order o Multiplication o Division o Addition o Subtraction • In other words, Excel will begin to parse your formula starting with any multiplication and division. Once this is complete, Excel will add and subtract the remainder of your formula. Inserting a function Each of Excel’s functions is a predefined formula, and most act on a range of cells that you select. (Excel refers to each range of cells in the function as an argument.) Although a few functions do not use arguments, most have one or more and some complex functions use as many as 3 or 4 arguments. Excel provides a Paste Function window to simplify the process of inserting functions into your worksheets and eliminate the need to remember the exact syntax of each function. • Select the cell into which you want to insert a function. • From the Insert menu, choose Function. Alternatively, you can click on the Paste Function button on the standard toolbar.
  • 3. 3 • In the Paste Function window, click on the function category containing the function you want. Next, click on the name of the function you wish to insert. Once you have selected a function, click OK. • Next, Excel will display a syntax window to help you construct the function. From this window, first click on the collapse button (labeled with a red arrow) to the right of the box labeled Number1 or Value1 (depending on the function you chose to insert). • Drag to select the range of cells to be included as the function’s first argument. Type enter. • To insert additional arguments into the function, follow this process using the other Number boxes in the syntax window. • When you have finished, click OK in the syntax window to insert the function into your worksheet.
  • 4. 4 Searching for help on functions From the Paste Function window, Excel offers help on a function that you have selected as well as help finding the function that will perform a task you describe. Getting help on a specific function • To get help on a specific function, click on the function’s name at the right of the Paste Function window and then click on the Help button at the window’s lower left. • Click on Help with this feature in the yellow callout box that appears, and then click on Help on selected function in the callout box that appears next. Excel will display its Help topic on the function that you selected.
  • 5. 5 Finding a function • From the Paste Function window, click on the Help button in the lower left corner, and then click on Help with this feature in the yellow callout box that appears. • In the box at the bottom of the next yellow callout box, type a description of the calculation you wish to perform. Click on Search. • Excel will display a list of functions that may meet your criteria in the Recommended list at the right of the Paste Function window. To learn more about one of these functions, click on its name and then click Help on selected function.
  • 6. 6 Using functions with external data Although most functions utilize data on the same worksheet, you can also use data on other worksheets or in other. In this way, you can consolidate data from multiple sources into an executive summary. • Before beginning, open any workbooks that contain data to be used in your function. • Select the cell into which you want to insert a function. • Open the Paste Function window, click on the name of the function you wish to insert, and click OK. • Collapse the gray syntax window, using the collapse button (labeled with a red arrow). • Navigate so that the worksheet or workbook containing your data is visible on your screen. • Drag to select the range of cells to be included as the function’s first argument. Type enter. • Excel will insert the reference to the cells that you selected (including the name of the external worksheet and workbook) into your function. Click OK to finish your function. Tip: Naming external data ranges When you select a range of cells on an external worksheet, Excel will add the name of your external worksheet to the cell range reference that it creates. In the example above, Excel refers to the selected cells (from the expenses worksheet) as expenses!D5:D15. If those cells were in an external workbook, the name of that workbook would preface the worksheet name. In general, references to external data look like this: [workbook name.xls]worksheet name!C1:C34
  • 7. 7 Tip: Using external data in formulas Use this technique to insert external data in your formulas, as well. When creating a formula, navigate to the external worksheet containing your and click to select that cell’s data for use in your formula. Excel will automatically insert the correct cell reference (including the worksheet and workbook names) into your formula. Function Cheat Sheet Functions Description Syntax Example Functions without arguments Rand Generates a random number between 0 and 1 =Rand() =Rand()*3; (generates a random number between 0 and 3) Pi Generates the value of pi to 14 decminal places =Pi() =Pi() Functions with 1 argument Average Produces the average of the data in a range of cells =average(Cx:Cy) =average(C1:C12) Max Produces the greatest value in a column of cells =max(Cx:Cy) =max(C1:C12) Hour Returns the number of hours past midnight for the specified time =hour(Cx) =hour(time) =hour(A34) =hour(1:35 PM) Minute Returns the number of minutes past the hour for the specified time =minute (Cx) =minute (time) =minute(A34) =minute(1:35 PM) Sqrt Produces the square root of its argument =sqrt(Cx) =sqrt(number) =sqrt(Cx) =sqrt(9) Functions with 2 arguments Round Rounds a value to a specified digit to the left or right of the decimal point =round(Cx, number) =round (value, number) =round(A22, 2); (rounds to 2 decimal places) =round (123.45,0); (rounds to 0 decimal places) Countif Counts the number of cells in a range that meet a specified criteria =countif(Cx:Cy, “>criteria”) =countif(C1:C12, “>150”)
  • 8. 8 Functions Description Syntax Example Functions with 3 arguments If Provides the basis for a decision; if condition is met, one answer is returned; if condition is not met, another answer is returned =if(condition,“a nswer1”, ”answer2) =if(A1>0,”yes”,”no); if the value of A1 is positive, Excel returns the answer “yes”; otherwise, Excel returns the answer “no” Sumif Produces the sum of the cells in a range if any cells in a second range meet a selection criterion =sumif(Cx:Cy,c riterion,Dx:Dy) Cx:Cy: the range of cells to meet the criterion Dx:Dy: the range of cells from which sum will be calculated =sumif(C1:C12, >150,D1:D12) Functions with one or more arguments And Returns a logical TRUE response if all of its arguments are true; otherwise returns false =and(condition 1,condition2, condition3…) =and(A1>0,A2>1,A3>3) Or Returns a logical TRUE response if one or more arguments are true; otherwise returns false =or(condition1, condition2, condition3…) =or(A1>70,A1<80) Sum Totals the data in a column of cells =sum(Cx:Cy,Dx ,Dy) =sum(C1:C12) Referencing a range of cells…. • In other worksheets: worksheet!A1:D4 • In other workbook: c:my documents[test.xls]Sheet1!A2:A5 • Across several worksheets: sheet1:sheet5!A12