SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Downloaden Sie, um offline zu lesen
Mastering Excel Formulas
and Functions
1
Presented by: Dennis Taylor
2
 Power Tips
 Display all formulas in a worksheet
 Highlight all formula cells in a worksheet
 Enter formulas in multiple cells with the Ctrl key
 Extended uses of the AutoSum button
 Relative/Absolute adjustments
 Power Functions
 The IF function: simple, nested, in combination
with AND and OR
 VLOOKUP – Exact and approximate lookups
 Rounding functions
 ROUND, ROUNDUP, and ROUNDDOWN
 MROUND, CEILING, FLOOR, INT, TRUNC
 Statistical Functions
 MAX, MIN, AVERAGE, MEDIAN
 MODE, RANK, LARGE, SMALL
 COUNTIF and Related Functions
 Recently Added Functions
 Date/Time Formulas and Functions
 Date/Time calculations
 WEEKDAY – determine day of the week
 NETWORKDAYS – working days between dates
 DATEDIF – days, months, years between dates
Major Topics
Presented by: Dennis Taylor
dennistaylor@msn.com
 AutoSum Button
 Select cells along right side or below data (or both) and use AutoSum button or
its drop arrow functions
 Displaying Formulas and selecting formula cells
 Press Ctrl+~ to toggle between displaying formulas and displaying results
 On Home tab, click the Find&Select button, then Formulas
 Multiple cell formulas with the Ctrl key
 Select cells where similar formulas are needed
 Type one formula and press Ctrl+Enter
 Relative References - Use the F4 key
 Quickly adjust cell formulas to freeze row references, as in A$4 or column
references, as in $A4.
 Use entire Row or Column references in formulas
 =SUM(B:B) instead of SUM(B2:B655)
3
Power Tips
 =IF(condition,true,false)
 Conditional operators - < > = >= <= < >
 =IF(B2>=400,1000,"Sell")
 Nested, multiple IFs
 =IF(B3>5,100,IF(B3>3,50,25))
 =IF(B3>5,100,IF(B3>3,50,IF(B3>2,25,10)))
 Using AND and OR with IF
 =IF(AND(condition1,condition2,…),true,false)
 =IF(AND(B6="A",B7="B"),100,50)
 =IF(OR(condition1,condition2,…),true,false)
 =IF(OR(A3=7,D3=5),100,50)
4
Power Functions: the IF Function
 VLOOKUP (item to look up, table location, column number in table where
answer is found, exact indicator)
 =VLOOKUP(A7,P:S,2) approximate lookup
Compare the value of cell A7 with values in the left column of the range in
columns P through S; locate the value nearest to (but not above) the value
in A7 and return a value found in column Q (second column of P thru S.
 =VLOOKUP(H3,K1:N9,3,0) exact lookups
Compare the value of cell H3 with values in the left column of the range
K1:N9; when an exact match is found, return a corresponding value found in
the third column of K1:N9. If not found, return #N/A.
5
Power Functions: the VLOOKUP Function
 ROUND – alter the results of formulas to round results to the nearest power of ten
– often to two or zero decimals
 =ROUND(B3*N1+B3,2) – rounds a calculation to the nearest two decimal places
 =ROUND(B3*N1+B3,0) – rounds the calculation to the nearest whole number
 ROUNDUP – rounds up to the next level,
 =ROUNDUP(C3*D4,1) – if C3*B4 equals 7.32, changes result to 7.4
 ROUNDOWN - rounds down to the next level
 =ROUNDDOWN(F3*G4,1) – if F3*G4 equals 6.18, changes result to 6.1
 MROUND, CEILING, FLOOR – allow rounding to any value, not just powers of ten
6
Rounding Functions
 MAX, MIN - find highest/lowest values in a range
 AVERAGE - calculate arithmetic mean of values
 MEDIAN - calculate the middle value in a values range
 MODE - calculate the most frequent occurrence in a values range
 RANK - calculate the rank of a value in a range
 LARGE, SMALL - find the nth largest or smallest value in a range
7
Statistical Function Overview
 =COUNTIF(E2:E90,"=Colorado") Count how many cells in the range E2:E90 equal "Colorado"
 =SUMIF(K2:K66,"=Ohio",J2:J66)
Total all values in J2:J66 when the corresponding entry in Column K equals "Ohio".
 =AVERAGEIF(K2:K66,"=Ohio",J2:J66)
Calculate average of values in range J2:J66 when corresponding entry in Column K equals "Ohio"
 =COUNTIFS(E:E,5,F:F,"=Iowa") Count how many cells in Column E = 5 and in Column F = Iowa"
 =SUMIFS(H:H,E:E,5,F:F,"Utah",G:G,">500")
Total all values in Column H when the corresponding entries in Columns E, F, and G are:
equal to 5, equal to Utah, and greater than 500, respectively.
 =AVERAGEIFS(H:H,E:E,5,F:F,"Ohio",G:G,">500")
Calculate the average of all values in Column H when the corresponding entries in Columns E, F, and
G are: equal to 5, equal to Ohio, and greater than 500, respectively.
8
COUNTIF and Related Functions
 New in Excel 2010-------------------------------------------------------------------------
 AGGREGATE – tabulate data based on commonly used statistical measures (SUM,
AVERAGE, MEDIAN…) with options to ignore errors and hidden rows)
 New in Excel 2013-------------------------------------------------------------------------
 ARABIC– convert Roman numerals into Arabic numbers; a companion the ROMAN function
which converts numbers from Arabic to Roman.
 ISFORMULA – check whether a reference is to a cell containing a formula, and return TRUE or FALSE
can be used with Conditional Formatting to dynamically indicate which cells contain formulas
 FORMULATEXT – displays the text of a formula from another cell
 ISNA – check whether a value is #NA, and returns TRUE or FALSE
9
Recently Added Functions
 WEEKDAY
 =WEEKDAY(A3)
 calculate day of the week for the date in cell A3. Returns a value of 1(Sunday) through
7(Saturday)
 NETWORKDAYS
 =NETWORKDAYS("5/2/13", "9/4/13",G2:G10)
 calculate working days from 5/2/13 through 9/4/13, omitting any dates found in a list
of holidays in cells G2:G10 -- returns the value 87.
 DATEDIF
 =DATEDIF("11/17/2006","7/5/2013","y")
 calculate number of full years between 11/17/06 and 7/5/13
returns the value 6
 =DATEDIF("11/17/2006","7/5/2013", "m")
 calculate number of full months between 11/17/06 and 7/5/13
returns the value 79
10
Date/Time Formulas and Functions

Weitere ähnliche Inhalte

Was ist angesagt?

ms excel presentation...
ms excel presentation...ms excel presentation...
ms excel presentation...alok1994
 
Excel 2010 Unit A PPT
Excel 2010 Unit A PPTExcel 2010 Unit A PPT
Excel 2010 Unit A PPTokmomwalking
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariAmresh Tiwari
 
Intro to Excel Basics: Part I
Intro to Excel Basics: Part IIntro to Excel Basics: Part I
Intro to Excel Basics: Part ISi Krishan
 
Types of charts in Excel and How to use them
Types of charts in Excel and How to use themTypes of charts in Excel and How to use them
Types of charts in Excel and How to use themVijay Perepa
 
Conditional formatting
Conditional formattingConditional formatting
Conditional formattingum5ashm
 
A practical tutorial to excel
A practical tutorial to excelA practical tutorial to excel
A practical tutorial to excelMunna India
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsP. SUNDARI ARUN
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Alomgir Hossain
 
Using vlookup in excel
Using vlookup in excelUsing vlookup in excel
Using vlookup in excelmegankilb
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basicsjeshin jose
 

Was ist angesagt? (20)

ms excel presentation...
ms excel presentation...ms excel presentation...
ms excel presentation...
 
Formatting in MS Excel
Formatting in MS ExcelFormatting in MS Excel
Formatting in MS Excel
 
Excel 2010 Unit A PPT
Excel 2010 Unit A PPTExcel 2010 Unit A PPT
Excel 2010 Unit A PPT
 
Ms excel
Ms excelMs excel
Ms excel
 
Microsoft Excel 101
Microsoft Excel 101Microsoft Excel 101
Microsoft Excel 101
 
Excel for beginner
Excel for beginnerExcel for beginner
Excel for beginner
 
Excel Tutorial
Excel TutorialExcel Tutorial
Excel Tutorial
 
MS Excel
MS ExcelMS Excel
MS Excel
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Intro to Excel Basics: Part I
Intro to Excel Basics: Part IIntro to Excel Basics: Part I
Intro to Excel Basics: Part I
 
Types of charts in Excel and How to use them
Types of charts in Excel and How to use themTypes of charts in Excel and How to use them
Types of charts in Excel and How to use them
 
Conditional formatting
Conditional formattingConditional formatting
Conditional formatting
 
A practical tutorial to excel
A practical tutorial to excelA practical tutorial to excel
A practical tutorial to excel
 
MS-Excel Formulas and Functions
MS-Excel Formulas and FunctionsMS-Excel Formulas and Functions
MS-Excel Formulas and Functions
 
Excel formulas tf-jul1605
Excel formulas tf-jul1605Excel formulas tf-jul1605
Excel formulas tf-jul1605
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table
 
Excel lesson01
Excel lesson01Excel lesson01
Excel lesson01
 
Pivot Tables
Pivot TablesPivot Tables
Pivot Tables
 
Using vlookup in excel
Using vlookup in excelUsing vlookup in excel
Using vlookup in excel
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basics
 

Andere mochten auch

Microsoft Office Excel 2003 Tutorials (Sasha Y7)
Microsoft Office Excel 2003 Tutorials (Sasha Y7) Microsoft Office Excel 2003 Tutorials (Sasha Y7)
Microsoft Office Excel 2003 Tutorials (Sasha Y7) Aimina Salsabila
 
Microsoft Office Access 2003 Tutorial for Beginners
Microsoft Office Access 2003 Tutorial for BeginnersMicrosoft Office Access 2003 Tutorial for Beginners
Microsoft Office Access 2003 Tutorial for BeginnersAimina Salsabila
 
Microsoft Excel 2007 Tutorial
Microsoft Excel 2007 TutorialMicrosoft Excel 2007 Tutorial
Microsoft Excel 2007 Tutorialdhafinnaviansyah
 
Tutorial of microsoft excel 2007
Tutorial of microsoft excel 2007Tutorial of microsoft excel 2007
Tutorial of microsoft excel 2007sabillafh
 
Panduan aplikasi Persediaan dg excel
Panduan aplikasi Persediaan dg excelPanduan aplikasi Persediaan dg excel
Panduan aplikasi Persediaan dg excelMas Tri Sragen
 
AutoCorrect - Excel 2013 Tutorial
AutoCorrect - Excel 2013 TutorialAutoCorrect - Excel 2013 Tutorial
AutoCorrect - Excel 2013 TutorialSpreadsheetTrainer
 
Cara membuat input data di excel dengan form
Cara  membuat input data di excel dengan formCara  membuat input data di excel dengan form
Cara membuat input data di excel dengan formSidik Abdullah
 
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesE-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesBurCom Consulting Ltd.
 
Belajar macro excel 2007
Belajar macro excel 2007Belajar macro excel 2007
Belajar macro excel 2007doni sandra
 
Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)
Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)
Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)Syawalianto Rahmaputro
 
Belajar Excel Tingkat Mahir
Belajar Excel Tingkat MahirBelajar Excel Tingkat Mahir
Belajar Excel Tingkat MahirAYU LESTARI
 
SXSW 2011 - Interactive 101
SXSW 2011 - Interactive 101SXSW 2011 - Interactive 101
SXSW 2011 - Interactive 101Tessa Horehled
 
структура процесу самовиховання. тема 5
структура процесу самовиховання. тема 5структура процесу самовиховання. тема 5
структура процесу самовиховання. тема 5mad psychologist
 
Digital Marketing Campaigns
Digital Marketing CampaignsDigital Marketing Campaigns
Digital Marketing CampaignsSpartans1
 
DIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOS
DIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOSDIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOS
DIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOSfrancy1103
 
Recruitment strategy for startup business
Recruitment strategy for startup businessRecruitment strategy for startup business
Recruitment strategy for startup businessCrowdinvest
 
The six essential skills of professional social media practitioners
The six essential skills of professional social media practitionersThe six essential skills of professional social media practitioners
The six essential skills of professional social media practitionersMarketingatBahrain
 

Andere mochten auch (20)

Excel Chapter 2
Excel Chapter 2Excel Chapter 2
Excel Chapter 2
 
Microsoft Office Excel 2003 Tutorials (Sasha Y7)
Microsoft Office Excel 2003 Tutorials (Sasha Y7) Microsoft Office Excel 2003 Tutorials (Sasha Y7)
Microsoft Office Excel 2003 Tutorials (Sasha Y7)
 
Microsoft Office Access 2003 Tutorial for Beginners
Microsoft Office Access 2003 Tutorial for BeginnersMicrosoft Office Access 2003 Tutorial for Beginners
Microsoft Office Access 2003 Tutorial for Beginners
 
Microsoft Excel 2007 Tutorial
Microsoft Excel 2007 TutorialMicrosoft Excel 2007 Tutorial
Microsoft Excel 2007 Tutorial
 
Tutorial of microsoft excel 2007
Tutorial of microsoft excel 2007Tutorial of microsoft excel 2007
Tutorial of microsoft excel 2007
 
Panduan aplikasi Persediaan dg excel
Panduan aplikasi Persediaan dg excelPanduan aplikasi Persediaan dg excel
Panduan aplikasi Persediaan dg excel
 
AutoCorrect - Excel 2013 Tutorial
AutoCorrect - Excel 2013 TutorialAutoCorrect - Excel 2013 Tutorial
AutoCorrect - Excel 2013 Tutorial
 
Cara membuat input data di excel dengan form
Cara  membuat input data di excel dengan formCara  membuat input data di excel dengan form
Cara membuat input data di excel dengan form
 
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesE-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
 
Belajar macro excel 2007
Belajar macro excel 2007Belajar macro excel 2007
Belajar macro excel 2007
 
Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)
Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)
Belajar MS Excel - Rumus Vlookup (mengisi data kolom secara otomatis)
 
Belajar Excel Tingkat Mahir
Belajar Excel Tingkat MahirBelajar Excel Tingkat Mahir
Belajar Excel Tingkat Mahir
 
SXSW 2011 - Interactive 101
SXSW 2011 - Interactive 101SXSW 2011 - Interactive 101
SXSW 2011 - Interactive 101
 
структура процесу самовиховання. тема 5
структура процесу самовиховання. тема 5структура процесу самовиховання. тема 5
структура процесу самовиховання. тема 5
 
Digital Marketing Campaigns
Digital Marketing CampaignsDigital Marketing Campaigns
Digital Marketing Campaigns
 
Animada
AnimadaAnimada
Animada
 
大球場
大球場大球場
大球場
 
DIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOS
DIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOSDIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOS
DIFERENCIA ENTRE COMPUESTOS ORGÁNICOS E INORGÁNICOS
 
Recruitment strategy for startup business
Recruitment strategy for startup businessRecruitment strategy for startup business
Recruitment strategy for startup business
 
The six essential skills of professional social media practitioners
The six essential skills of professional social media practitionersThe six essential skills of professional social media practitioners
The six essential skills of professional social media practitioners
 

Ähnlich wie Mastering Excel Formulas and Functions

Simple Spreadsheet Tips
Simple Spreadsheet TipsSimple Spreadsheet Tips
Simple Spreadsheet TipsInside Access
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answerRaajTech
 
count^J Product^J functions.pptx
count^J Product^J functions.pptxcount^J Product^J functions.pptx
count^J Product^J functions.pptxMdAquibRazi1
 
Use of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesUse of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesElli May Cañas
 
Intro to DAX Patterns
Intro to DAX PatternsIntro to DAX Patterns
Intro to DAX PatternsEric Bragas
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfRakesh Nimhan
 
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
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptAllanGuevarra1
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptJosephIThomas
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptxPizzaM
 
SQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfSQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfLightWolf2
 

Ähnlich wie Mastering Excel Formulas and Functions (20)

Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
Simple Spreadsheet Tips
Simple Spreadsheet TipsSimple Spreadsheet Tips
Simple Spreadsheet Tips
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
 
To excel or not?
To excel or not?To excel or not?
To excel or not?
 
count^J Product^J functions.pptx
count^J Product^J functions.pptxcount^J Product^J functions.pptx
count^J Product^J functions.pptx
 
Use of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesUse of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing Grades
 
Intro to DAX Patterns
Intro to DAX PatternsIntro to DAX Patterns
Intro to DAX Patterns
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
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
 
Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
 
Excel Training
Excel TrainingExcel Training
Excel Training
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
Excel 2007 Unit H
Excel 2007 Unit HExcel 2007 Unit H
Excel 2007 Unit H
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptx
 
Ms excel
Ms excelMs excel
Ms excel
 
Adv excel
Adv excelAdv excel
Adv excel
 
1670595076250.pdf
1670595076250.pdf1670595076250.pdf
1670595076250.pdf
 
SQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfSQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdf
 

Mehr von LinkedIn Learning Solutions

Mobile devices: the new learning platform for Higher Education
Mobile devices: the new learning platform for Higher EducationMobile devices: the new learning platform for Higher Education
Mobile devices: the new learning platform for Higher EducationLinkedIn Learning Solutions
 
Fostering innovation to achieve mission critical goals
Fostering innovation to achieve mission critical goalsFostering innovation to achieve mission critical goals
Fostering innovation to achieve mission critical goalsLinkedIn Learning Solutions
 
LinkedIn Learning | What We're Learning About Learning
LinkedIn Learning | What We're Learning About LearningLinkedIn Learning | What We're Learning About Learning
LinkedIn Learning | What We're Learning About LearningLinkedIn Learning Solutions
 
Project-Based Instruction and the Importance of Self-Directed Learning
Project-Based Instruction and the Importance of Self-Directed LearningProject-Based Instruction and the Importance of Self-Directed Learning
Project-Based Instruction and the Importance of Self-Directed LearningLinkedIn Learning Solutions
 
9 Learning Strategies from Knowledge to Know-How
9 Learning Strategies from Knowledge to Know-How9 Learning Strategies from Knowledge to Know-How
9 Learning Strategies from Knowledge to Know-HowLinkedIn Learning Solutions
 
Online Video: How It Changes & Enhances The Way We Learn
Online Video: How It Changes & Enhances The Way We LearnOnline Video: How It Changes & Enhances The Way We Learn
Online Video: How It Changes & Enhances The Way We LearnLinkedIn Learning Solutions
 
Cybersecurity Health Checks: Safeguarding Your Organisation
Cybersecurity Health Checks: Safeguarding Your OrganisationCybersecurity Health Checks: Safeguarding Your Organisation
Cybersecurity Health Checks: Safeguarding Your OrganisationLinkedIn Learning Solutions
 
3 Ways Online Learning Boosts Employee Engagement
3 Ways Online Learning Boosts Employee Engagement3 Ways Online Learning Boosts Employee Engagement
3 Ways Online Learning Boosts Employee EngagementLinkedIn Learning Solutions
 

Mehr von LinkedIn Learning Solutions (20)

Mobile devices: the new learning platform for Higher Education
Mobile devices: the new learning platform for Higher EducationMobile devices: the new learning platform for Higher Education
Mobile devices: the new learning platform for Higher Education
 
Fostering innovation to achieve mission critical goals
Fostering innovation to achieve mission critical goalsFostering innovation to achieve mission critical goals
Fostering innovation to achieve mission critical goals
 
Insights from our Workplace Learning Report
Insights from our Workplace Learning Report Insights from our Workplace Learning Report
Insights from our Workplace Learning Report
 
LinkedIn Learning | What We're Learning About Learning
LinkedIn Learning | What We're Learning About LearningLinkedIn Learning | What We're Learning About Learning
LinkedIn Learning | What We're Learning About Learning
 
Develop Better People Managers
Develop Better People ManagersDevelop Better People Managers
Develop Better People Managers
 
Creating a Culture of Learning in the New Year
Creating a Culture of Learning in the New YearCreating a Culture of Learning in the New Year
Creating a Culture of Learning in the New Year
 
A New Year, New Look for Lynda.com
A New Year, New Look for Lynda.comA New Year, New Look for Lynda.com
A New Year, New Look for Lynda.com
 
Project-Based Instruction and the Importance of Self-Directed Learning
Project-Based Instruction and the Importance of Self-Directed LearningProject-Based Instruction and the Importance of Self-Directed Learning
Project-Based Instruction and the Importance of Self-Directed Learning
 
9 Learning Strategies from Knowledge to Know-How
9 Learning Strategies from Knowledge to Know-How9 Learning Strategies from Knowledge to Know-How
9 Learning Strategies from Knowledge to Know-How
 
Online Video: How It Changes & Enhances The Way We Learn
Online Video: How It Changes & Enhances The Way We LearnOnline Video: How It Changes & Enhances The Way We Learn
Online Video: How It Changes & Enhances The Way We Learn
 
8 Key Ways to Rock SEO
8 Key Ways to Rock SEO8 Key Ways to Rock SEO
8 Key Ways to Rock SEO
 
Top 5 Skills for Project Managers
Top 5 Skills for Project ManagersTop 5 Skills for Project Managers
Top 5 Skills for Project Managers
 
Cybersecurity Health Checks: Safeguarding Your Organisation
Cybersecurity Health Checks: Safeguarding Your OrganisationCybersecurity Health Checks: Safeguarding Your Organisation
Cybersecurity Health Checks: Safeguarding Your Organisation
 
3 Ways Online Learning Boosts Employee Engagement
3 Ways Online Learning Boosts Employee Engagement3 Ways Online Learning Boosts Employee Engagement
3 Ways Online Learning Boosts Employee Engagement
 
Creating a Culture of Learning in 6 Steps
Creating a Culture of Learning in 6 StepsCreating a Culture of Learning in 6 Steps
Creating a Culture of Learning in 6 Steps
 
How to Use Photography for Great Presentations
How to Use Photography for Great PresentationsHow to Use Photography for Great Presentations
How to Use Photography for Great Presentations
 
Fred Kofman on Managing Conflict
Fred Kofman on Managing ConflictFred Kofman on Managing Conflict
Fred Kofman on Managing Conflict
 
Ten Tips to Make You More Productive in Excel
Ten Tips to Make You More Productive in ExcelTen Tips to Make You More Productive in Excel
Ten Tips to Make You More Productive in Excel
 
What's New in Office 2016
What's New in Office 2016What's New in Office 2016
What's New in Office 2016
 
Evolution of the iPhone Camera
Evolution of the iPhone CameraEvolution of the iPhone Camera
Evolution of the iPhone Camera
 

Kürzlich hochgeladen

Simplify Your Funding: Quick and Easy Business Loans
Simplify Your Funding: Quick and Easy Business LoansSimplify Your Funding: Quick and Easy Business Loans
Simplify Your Funding: Quick and Easy Business LoansNugget Global
 
Pitch Deck Teardown: Xpanceo's $40M Seed deck
Pitch Deck Teardown: Xpanceo's $40M Seed deckPitch Deck Teardown: Xpanceo's $40M Seed deck
Pitch Deck Teardown: Xpanceo's $40M Seed deckHajeJanKamps
 
EUDR Info Meeting Ethiopian coffee exporters
EUDR Info Meeting Ethiopian coffee exportersEUDR Info Meeting Ethiopian coffee exporters
EUDR Info Meeting Ethiopian coffee exportersPeter Horsten
 
Technical Leaders - Working with the Management Team
Technical Leaders - Working with the Management TeamTechnical Leaders - Working with the Management Team
Technical Leaders - Working with the Management TeamArik Fletcher
 
Paul Turovsky - Real Estate Professional
Paul Turovsky - Real Estate ProfessionalPaul Turovsky - Real Estate Professional
Paul Turovsky - Real Estate ProfessionalPaul Turovsky
 
Jewish Resources in the Family Resource Centre
Jewish Resources in the Family Resource CentreJewish Resources in the Family Resource Centre
Jewish Resources in the Family Resource CentreNZSG
 
Healthcare Feb. & Mar. Healthcare Newsletter
Healthcare Feb. & Mar. Healthcare NewsletterHealthcare Feb. & Mar. Healthcare Newsletter
Healthcare Feb. & Mar. Healthcare NewsletterJamesConcepcion7
 
Types of Cyberattacks - ASG I.T. Consulting.pdf
Types of Cyberattacks - ASG I.T. Consulting.pdfTypes of Cyberattacks - ASG I.T. Consulting.pdf
Types of Cyberattacks - ASG I.T. Consulting.pdfASGITConsulting
 
How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...
How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...
How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...SOFTTECHHUB
 
Customizable Contents Restoration Training
Customizable Contents Restoration TrainingCustomizable Contents Restoration Training
Customizable Contents Restoration TrainingCalvinarnold843
 
NAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors DataNAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors DataExhibitors Data
 
1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdfShaun Heinrichs
 
Onemonitar Android Spy App Features: Explore Advanced Monitoring Capabilities
Onemonitar Android Spy App Features: Explore Advanced Monitoring CapabilitiesOnemonitar Android Spy App Features: Explore Advanced Monitoring Capabilities
Onemonitar Android Spy App Features: Explore Advanced Monitoring CapabilitiesOne Monitar
 
Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...
Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...
Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...Aggregage
 
71368-80-4.pdf Fast delivery good quality
71368-80-4.pdf Fast delivery  good quality71368-80-4.pdf Fast delivery  good quality
71368-80-4.pdf Fast delivery good qualitycathy664059
 
Excvation Safety for safety officers reference
Excvation Safety for safety officers referenceExcvation Safety for safety officers reference
Excvation Safety for safety officers referencessuser2c065e
 
Rakhi sets symbolizing the bond of love.pptx
Rakhi sets symbolizing the bond of love.pptxRakhi sets symbolizing the bond of love.pptx
Rakhi sets symbolizing the bond of love.pptxRakhi Bazaar
 

Kürzlich hochgeladen (20)

Simplify Your Funding: Quick and Easy Business Loans
Simplify Your Funding: Quick and Easy Business LoansSimplify Your Funding: Quick and Easy Business Loans
Simplify Your Funding: Quick and Easy Business Loans
 
Pitch Deck Teardown: Xpanceo's $40M Seed deck
Pitch Deck Teardown: Xpanceo's $40M Seed deckPitch Deck Teardown: Xpanceo's $40M Seed deck
Pitch Deck Teardown: Xpanceo's $40M Seed deck
 
The Bizz Quiz-E-Summit-E-Cell-IITPatna.pptx
The Bizz Quiz-E-Summit-E-Cell-IITPatna.pptxThe Bizz Quiz-E-Summit-E-Cell-IITPatna.pptx
The Bizz Quiz-E-Summit-E-Cell-IITPatna.pptx
 
EUDR Info Meeting Ethiopian coffee exporters
EUDR Info Meeting Ethiopian coffee exportersEUDR Info Meeting Ethiopian coffee exporters
EUDR Info Meeting Ethiopian coffee exporters
 
Technical Leaders - Working with the Management Team
Technical Leaders - Working with the Management TeamTechnical Leaders - Working with the Management Team
Technical Leaders - Working with the Management Team
 
Paul Turovsky - Real Estate Professional
Paul Turovsky - Real Estate ProfessionalPaul Turovsky - Real Estate Professional
Paul Turovsky - Real Estate Professional
 
Jewish Resources in the Family Resource Centre
Jewish Resources in the Family Resource CentreJewish Resources in the Family Resource Centre
Jewish Resources in the Family Resource Centre
 
WAM Corporate Presentation April 12 2024.pdf
WAM Corporate Presentation April 12 2024.pdfWAM Corporate Presentation April 12 2024.pdf
WAM Corporate Presentation April 12 2024.pdf
 
Healthcare Feb. & Mar. Healthcare Newsletter
Healthcare Feb. & Mar. Healthcare NewsletterHealthcare Feb. & Mar. Healthcare Newsletter
Healthcare Feb. & Mar. Healthcare Newsletter
 
Types of Cyberattacks - ASG I.T. Consulting.pdf
Types of Cyberattacks - ASG I.T. Consulting.pdfTypes of Cyberattacks - ASG I.T. Consulting.pdf
Types of Cyberattacks - ASG I.T. Consulting.pdf
 
How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...
How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...
How To Simplify Your Scheduling with AI Calendarfly The Hassle-Free Online Bo...
 
Customizable Contents Restoration Training
Customizable Contents Restoration TrainingCustomizable Contents Restoration Training
Customizable Contents Restoration Training
 
NAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors DataNAB Show Exhibitor List 2024 - Exhibitors Data
NAB Show Exhibitor List 2024 - Exhibitors Data
 
1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf1911 Gold Corporate Presentation Apr 2024.pdf
1911 Gold Corporate Presentation Apr 2024.pdf
 
Onemonitar Android Spy App Features: Explore Advanced Monitoring Capabilities
Onemonitar Android Spy App Features: Explore Advanced Monitoring CapabilitiesOnemonitar Android Spy App Features: Explore Advanced Monitoring Capabilities
Onemonitar Android Spy App Features: Explore Advanced Monitoring Capabilities
 
Toyota and Seven Parts Storage Techniques
Toyota and Seven Parts Storage TechniquesToyota and Seven Parts Storage Techniques
Toyota and Seven Parts Storage Techniques
 
Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...
Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...
Strategic Project Finance Essentials: A Project Manager’s Guide to Financial ...
 
71368-80-4.pdf Fast delivery good quality
71368-80-4.pdf Fast delivery  good quality71368-80-4.pdf Fast delivery  good quality
71368-80-4.pdf Fast delivery good quality
 
Excvation Safety for safety officers reference
Excvation Safety for safety officers referenceExcvation Safety for safety officers reference
Excvation Safety for safety officers reference
 
Rakhi sets symbolizing the bond of love.pptx
Rakhi sets symbolizing the bond of love.pptxRakhi sets symbolizing the bond of love.pptx
Rakhi sets symbolizing the bond of love.pptx
 

Mastering Excel Formulas and Functions

  • 1. Mastering Excel Formulas and Functions 1 Presented by: Dennis Taylor
  • 2. 2  Power Tips  Display all formulas in a worksheet  Highlight all formula cells in a worksheet  Enter formulas in multiple cells with the Ctrl key  Extended uses of the AutoSum button  Relative/Absolute adjustments  Power Functions  The IF function: simple, nested, in combination with AND and OR  VLOOKUP – Exact and approximate lookups  Rounding functions  ROUND, ROUNDUP, and ROUNDDOWN  MROUND, CEILING, FLOOR, INT, TRUNC  Statistical Functions  MAX, MIN, AVERAGE, MEDIAN  MODE, RANK, LARGE, SMALL  COUNTIF and Related Functions  Recently Added Functions  Date/Time Formulas and Functions  Date/Time calculations  WEEKDAY – determine day of the week  NETWORKDAYS – working days between dates  DATEDIF – days, months, years between dates Major Topics Presented by: Dennis Taylor dennistaylor@msn.com
  • 3.  AutoSum Button  Select cells along right side or below data (or both) and use AutoSum button or its drop arrow functions  Displaying Formulas and selecting formula cells  Press Ctrl+~ to toggle between displaying formulas and displaying results  On Home tab, click the Find&Select button, then Formulas  Multiple cell formulas with the Ctrl key  Select cells where similar formulas are needed  Type one formula and press Ctrl+Enter  Relative References - Use the F4 key  Quickly adjust cell formulas to freeze row references, as in A$4 or column references, as in $A4.  Use entire Row or Column references in formulas  =SUM(B:B) instead of SUM(B2:B655) 3 Power Tips
  • 4.  =IF(condition,true,false)  Conditional operators - < > = >= <= < >  =IF(B2>=400,1000,"Sell")  Nested, multiple IFs  =IF(B3>5,100,IF(B3>3,50,25))  =IF(B3>5,100,IF(B3>3,50,IF(B3>2,25,10)))  Using AND and OR with IF  =IF(AND(condition1,condition2,…),true,false)  =IF(AND(B6="A",B7="B"),100,50)  =IF(OR(condition1,condition2,…),true,false)  =IF(OR(A3=7,D3=5),100,50) 4 Power Functions: the IF Function
  • 5.  VLOOKUP (item to look up, table location, column number in table where answer is found, exact indicator)  =VLOOKUP(A7,P:S,2) approximate lookup Compare the value of cell A7 with values in the left column of the range in columns P through S; locate the value nearest to (but not above) the value in A7 and return a value found in column Q (second column of P thru S.  =VLOOKUP(H3,K1:N9,3,0) exact lookups Compare the value of cell H3 with values in the left column of the range K1:N9; when an exact match is found, return a corresponding value found in the third column of K1:N9. If not found, return #N/A. 5 Power Functions: the VLOOKUP Function
  • 6.  ROUND – alter the results of formulas to round results to the nearest power of ten – often to two or zero decimals  =ROUND(B3*N1+B3,2) – rounds a calculation to the nearest two decimal places  =ROUND(B3*N1+B3,0) – rounds the calculation to the nearest whole number  ROUNDUP – rounds up to the next level,  =ROUNDUP(C3*D4,1) – if C3*B4 equals 7.32, changes result to 7.4  ROUNDOWN - rounds down to the next level  =ROUNDDOWN(F3*G4,1) – if F3*G4 equals 6.18, changes result to 6.1  MROUND, CEILING, FLOOR – allow rounding to any value, not just powers of ten 6 Rounding Functions
  • 7.  MAX, MIN - find highest/lowest values in a range  AVERAGE - calculate arithmetic mean of values  MEDIAN - calculate the middle value in a values range  MODE - calculate the most frequent occurrence in a values range  RANK - calculate the rank of a value in a range  LARGE, SMALL - find the nth largest or smallest value in a range 7 Statistical Function Overview
  • 8.  =COUNTIF(E2:E90,"=Colorado") Count how many cells in the range E2:E90 equal "Colorado"  =SUMIF(K2:K66,"=Ohio",J2:J66) Total all values in J2:J66 when the corresponding entry in Column K equals "Ohio".  =AVERAGEIF(K2:K66,"=Ohio",J2:J66) Calculate average of values in range J2:J66 when corresponding entry in Column K equals "Ohio"  =COUNTIFS(E:E,5,F:F,"=Iowa") Count how many cells in Column E = 5 and in Column F = Iowa"  =SUMIFS(H:H,E:E,5,F:F,"Utah",G:G,">500") Total all values in Column H when the corresponding entries in Columns E, F, and G are: equal to 5, equal to Utah, and greater than 500, respectively.  =AVERAGEIFS(H:H,E:E,5,F:F,"Ohio",G:G,">500") Calculate the average of all values in Column H when the corresponding entries in Columns E, F, and G are: equal to 5, equal to Ohio, and greater than 500, respectively. 8 COUNTIF and Related Functions
  • 9.  New in Excel 2010-------------------------------------------------------------------------  AGGREGATE – tabulate data based on commonly used statistical measures (SUM, AVERAGE, MEDIAN…) with options to ignore errors and hidden rows)  New in Excel 2013-------------------------------------------------------------------------  ARABIC– convert Roman numerals into Arabic numbers; a companion the ROMAN function which converts numbers from Arabic to Roman.  ISFORMULA – check whether a reference is to a cell containing a formula, and return TRUE or FALSE can be used with Conditional Formatting to dynamically indicate which cells contain formulas  FORMULATEXT – displays the text of a formula from another cell  ISNA – check whether a value is #NA, and returns TRUE or FALSE 9 Recently Added Functions
  • 10.  WEEKDAY  =WEEKDAY(A3)  calculate day of the week for the date in cell A3. Returns a value of 1(Sunday) through 7(Saturday)  NETWORKDAYS  =NETWORKDAYS("5/2/13", "9/4/13",G2:G10)  calculate working days from 5/2/13 through 9/4/13, omitting any dates found in a list of holidays in cells G2:G10 -- returns the value 87.  DATEDIF  =DATEDIF("11/17/2006","7/5/2013","y")  calculate number of full years between 11/17/06 and 7/5/13 returns the value 6  =DATEDIF("11/17/2006","7/5/2013", "m")  calculate number of full months between 11/17/06 and 7/5/13 returns the value 79 10 Date/Time Formulas and Functions