SlideShare a Scribd company logo
1 of 92
Microsoft Excel
Functions & Shortcuts for Beginners
KISS ~ Keep It Simple Stupid!
Parts of a Formula
1.Functions
2.References
3.Constants
4.Operators
Formula Example ~ Single Argument
=SUM(A1:A10) is an example of a single argument.
Mathematical Formulas
• Sum
• Count
• Counta
• Sumif
• Average
• Round
• Product
• Roman
SUMIF
What it does?
sums items in a list matching a condition
Syntax:
sumif(in this range,values that meet this criteria,[sum-this-range])
Example:
=sumif(A1:A20,10) = sums the cells with the value of "10"
SUMIF
• We want to know how many HP
Laser Jet Printers we have.
• =sumif(a2:a14,”HP Laser Jet”,c2:c14)
• Which equals 11
• We want to know how many HP
Laser Jet Printers the POLICE have.
• =sumifs(c2:c14,a2:14,”HP Laser
Jet”,b2:b14,”Police”)
• Which equals 3
Color Printers Dept Quanity
HP Laser Jet Admin 4
HP M553 Construction 5
HP Laser Jet Construction 1
Epson WF2750 Police 4
HP Laser Jet Pro Fire Prevention 1
Canon MF634 Human Svcs 2
HP Laser Jet Police 3
Canon MF634 Recreation 3
HP Laser Jet Parks 1
HP M553 Clerk 1
HP Laser Jet Purchasing 1
Epson WF2750 OEM 1
HP Laser Jet Golf Course 1
SUMIF
=sumif(condition range,condition, sum range)
Sum alternate Rows/Columns Number Amount Condition
Alt. Row Sum 1: 183 1 56 0
=sumif(E15:E21,1,D15:D21) 2 35 1
Alt. Row Sum 0: 285 3 66 0
=sumif(E15:E21,0,D15:D21) 4 23 1
5 98 0
6 125 1
7 65 0
AVERAGE
What it does?
averages a group of numbers
Syntax:
average(of this number range)
Example:
=average(2,4,6) 4 5 10
=average(c9:d11) 12.4166667 3.5 20
6 30
ROUND
What it does?
rounds a number to the nearest decimal you specify
Syntax:
round(this number, to this many digits after decimal)
Example:
=round(12.416667,2) 12.42
Other:
=rounddown(12.416667,2) 12.41
=roundup(12.416667,2) 12.42
Using Rounding for Budgeting
Assessed Value 7,189,343,350
TAX
Amount to be
Raised
RATE no
round
RATE no
round
expanded
RATE
with
round
Actual
Rate
Struck
Municipal 42,778,836.00 0.60 0.5950 0.595 0.595
Municipal Open Space 1,437,869.00 0.02 0.0200 0.020 0.020
Library 2,871,017.00 0.04 0.0399 0.040 0.039
County 21,720,889.77 0.30 0.3021 0.302 0.303
County Open Space 761,633.70 0.01 0.0106 0.011 0.011
School 132,965,271.00 1.85 1.8495 1.849 1.850
Total 2.82 2.8172 2.8170 2.818
UGH!!!
ROMAN/ARABIC
What it does?
converts a number to roman numeral format
or visa versa
Syntax:
roman(number) arabic("text")
Example:
=roman(65) LXV
=arabic(LXV) 65
Logical Formulas
• If
• And
• Or
• Not
• Choose
• Iferror
• Istext
IF
What it does?
checks whether a condition is met and returns one value if TRUE and another if FALSE
Syntax:
if(is-this-true,then do this, or this)
Example:
=if(25<15,"looser","winner") = winner
Other:
=sumif(condition range,condition, sum range)
IFERROR
What it does?
an easy way to handle errors in formulas
IFERROR returns the value you want incase of
an error with the formula
Syntax:
iferror(formula, value to return if there is an error)
Example:
=iferror(1/0,"can't divide by zero") can't divide by zero
=iferror(0/1,"can't divide by zero") 0
Text Formulas
• Proper
• Trim
• Dollar
• Rept
• Text
• Type
Shortcuts
• Keyboard Shortcuts
• Insert Function
• Define Name
• Error Checking
• Watch Window
Keyboard
Shortcuts
• F2
• Ctrl-Home
• Double Click to change a
tab/sheet name
• Copy sheet within a
workbook
• Right Click to get Menu
• Press “Alt” Key and letters
appear called “Key Tips”
F2
Double Click to Change a Tab Name
Copy a Sheet ~ Copies WITH Format
Right Click Menu
ALT Key to see “Key Tips”
Error Messages
Error Types
Error Type When It Happens
#DIV/0! When you divide by ZERO
#N/A! When a formula or a function inside a formula
cannot find the referenced data.
#NAME? When the text in a formula is not recognized.
#NULL! When a space was used instead of a comma in
formulas that reference multiple ranges. A comma
is necessary to separate range references.
Error Type When It Happens
#NUM! When a formula has numeric data
#REF! When a reference is invalid.
#VALUE! When the wrong type of operand or function
argument is used
Error Types
###########
#DIV/0!
#N/A!
Excel displays this error when a value is not available to a function or formula.
=IFERROR(VLOOKUP(D2,$D$6:$E$8,2,TRUE),0)
#NAME?
#NULL
=SUM(C2:C3 E4:E6)
#REF!
This can happen when you delete
a row or column in error.
You can “undo” using Ctrl+Z or
the undo on the formula bar.
OR fix the formula to be
“continuous” =SUM(A2:C2)
#VALUE!
This is displayed when a cell
contains different types of data.
One way to fix this is to use
=SUM(F2:F5)
Absolute and Relative Referencing
• Absolute cell reference contains a ($) in a Row and/or Column
• Do not change when copied or filled
• Use when you want to consistently refer to a certain cell
A1 Relative
A$1 Column is relative; Row is Constant
$A1 Row is relative; Column is absolute
$A$1 BOTH are Absolute
Order of Operations
• The Order of Operations tells Excel which operation to calculate first.
1. Parenthesis
2. Exponents
3. Multiplication & Division
4. Addition & Subtraction
Circular
Reference
• A circular reference
occurs when a cell
refers to itself.
Common Formula Errors
Start with an “EQUAL SIGN” =
If you omit the equal sign, Excel thinks the data is “TEXT”
Match all open and closing parentheses
This gets more complicated as you add more formulas
=IF(B5<0),”Not Valid”,B5*1.05) – EXTRA Parentheses after <0
Use a colon to indicate a range
=SUM(A1:A5) not =SUM(A1 A5) returns #NULL
Common Formula Errors
Enter all required and correct type of arguments
Ex. Cannot combine SUM & REPLACE (Numerical vs Text)
Enter numbers without formatting
Ex. If you enter 1,000 into a formula vs 1000, it treats it
like a comma separator looking at it like “1,000” or 1
CUT vs COPY
Relative vs Absolute
Formulas inconsistent with other formulas
Formulas that omit cells in a group
Error Checking ~ Reset Ignored Errors
Formulas Referring To Empty Cells
Error checking
Ways to AUDIT your Spreadsheet
• Inspect Workbook
• F2
Find & Select
• Find & Select is found on the
Home Tab
• Find and replace
• Find Formulas, Comments, etc
Trace Precedents/Dependents
Watch Window
• Used when cells and their formulas
are not visible on a worksheet.
• On large spreadsheets, you don’t
have to repeatedly go to different
parts of you spreadsheet to confirm
formula calculations.
Add cells to the Watch Window
Specify What You Want to “Watch”
Now I can see how changes effect amount to be
raised no matter where I go in the sheet
Evaluate Formula
Evaluate Formula
No Formulas
Show Formulas
Formatting
Built in Styles
Do I want Gridlines???
On the View tab, in
the Show group, clear
the Gridlines check box.
Merge & Center
Pet PEVES (for me)
• Not Saving Your Spreadsheet at A1 (or at
the beginning)
• Centering Numbers
• Different Fonts
• No Labels
• Not doing the formula in Excel
• Inconsistent Number formats
• Putting a number into a spreadsheet
then making the font “white” so it’s
hidden.
• Manual indenting vs using the indent
function
File Names & Printing…
Footer:
• From Page Setup
• I add the Date
• &[Date] = 9/27/2017
• File name & path
• &[Path]&[File] =
E:Par TroyBudgetKnoll Revenue
Ways to Screw up your spreadsheet
• The sheet has a million rows and I’m going to fill them all!!!!!!!!!!
• There are 1,048,576 rows and 16,384 columns
• I know a few blank cells won’t matter
• I put as much as possible in each cell!
• Good example is names – first & last…break data into the smallest
reasonable pieces.
• I did it myself!
• Can build from a template or someone else's spreadsheet
• I love to jazz up my spreadsheets with WordArt
• I put everything on Sheet1 so it’s easy to find
• I put everything on a whole bunch of sheets
Ways to Screw up your spreadsheet
• I set all my sheets to manual to speed things up!
Quick Analysis:
Merge & Center
Using the Format Menu on the Ribbon
Use Cell Styles
Use Format as Table
Trend Analysis ~ Conditional Formatting
Analyzing Trends Using Sparklines
Using Sparklines
Create Sparkline Menu
Protect your work!
Mark as Final
Enable Worksheet Protection
Step 1
• Unlock any cells that need to be
editable
• Simply uncheck “Locked”
Enable Worksheet Protection
Step 2
• In Review tab, click Protect
Sheet.
• Allow users to do specific
functions.
• Put a Password to unprotect
sheet.(Optional)
Questions?

More Related Content

Similar to Cucci_-Excel_for_beginners_ (1).pptx

Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.pptelsagalgao
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functionsBuffalo Seminary
 
Spreadsheet for Year 8
Spreadsheet for Year 8Spreadsheet for Year 8
Spreadsheet for Year 8qistinahJR
 
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
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excelmadhuparna bhowmik
 
Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statisticszavenger
 
Introductionto Spreadsheet - Excel .pptx
Introductionto Spreadsheet - Excel .pptxIntroductionto Spreadsheet - Excel .pptx
Introductionto Spreadsheet - Excel .pptxSanaShah93
 
100-Excel-Tips.pdf
100-Excel-Tips.pdf100-Excel-Tips.pdf
100-Excel-Tips.pdfBudSmoker2
 
Lecture 1 Intro to Excel.pptx
Lecture 1 Intro to Excel.pptxLecture 1 Intro to Excel.pptx
Lecture 1 Intro to Excel.pptxEktasingh152981
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdfFranzLawrenzDeTorres1
 
Excel for Marketers - Why do you hate Excel (#Measurefest 2013)
Excel for Marketers - Why do you hate Excel (#Measurefest 2013)Excel for Marketers - Why do you hate Excel (#Measurefest 2013)
Excel for Marketers - Why do you hate Excel (#Measurefest 2013)Russell McAthy
 
Spreadsheets for developers
Spreadsheets for developersSpreadsheets for developers
Spreadsheets for developersFelienne Hermans
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful TipsParul_100in
 

Similar to Cucci_-Excel_for_beginners_ (1).pptx (20)

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
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
 
Excel intermediate
Excel intermediateExcel intermediate
Excel intermediate
 
Spreadsheet for Year 8
Spreadsheet for Year 8Spreadsheet for Year 8
Spreadsheet for Year 8
 
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
 
Excel error
Excel errorExcel error
Excel error
 
Excel
ExcelExcel
Excel
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
 
Introductionto Spreadsheet - Excel .pptx
Introductionto Spreadsheet - Excel .pptxIntroductionto Spreadsheet - Excel .pptx
Introductionto Spreadsheet - Excel .pptx
 
100-Excel-Tips.pdf
100-Excel-Tips.pdf100-Excel-Tips.pdf
100-Excel-Tips.pdf
 
Excel note.pdf
Excel note.pdfExcel note.pdf
Excel note.pdf
 
Lecture 1 Intro to Excel.pptx
Lecture 1 Intro to Excel.pptxLecture 1 Intro to Excel.pptx
Lecture 1 Intro to Excel.pptx
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Excel for Marketers - Why do you hate Excel (#Measurefest 2013)
Excel for Marketers - Why do you hate Excel (#Measurefest 2013)Excel for Marketers - Why do you hate Excel (#Measurefest 2013)
Excel for Marketers - Why do you hate Excel (#Measurefest 2013)
 
Spreadsheets for developers
Spreadsheets for developersSpreadsheets for developers
Spreadsheets for developers
 
Excel Useful Tips
Excel Useful TipsExcel Useful Tips
Excel Useful Tips
 

Recently uploaded

How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxAnaBeatriceAblay2
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
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
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
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
 

Recently uploaded (20)

How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptxENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
ENGLISH5 QUARTER4 MODULE1 WEEK1-3 How Visual and Multimedia Elements.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
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
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
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
 
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
 
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
 

Cucci_-Excel_for_beginners_ (1).pptx

  • 1. Microsoft Excel Functions & Shortcuts for Beginners
  • 2. KISS ~ Keep It Simple Stupid!
  • 3.
  • 4.
  • 5. Parts of a Formula 1.Functions 2.References 3.Constants 4.Operators
  • 6. Formula Example ~ Single Argument =SUM(A1:A10) is an example of a single argument.
  • 7. Mathematical Formulas • Sum • Count • Counta • Sumif • Average • Round • Product • Roman
  • 8. SUMIF What it does? sums items in a list matching a condition Syntax: sumif(in this range,values that meet this criteria,[sum-this-range]) Example: =sumif(A1:A20,10) = sums the cells with the value of "10"
  • 9. SUMIF • We want to know how many HP Laser Jet Printers we have. • =sumif(a2:a14,”HP Laser Jet”,c2:c14) • Which equals 11 • We want to know how many HP Laser Jet Printers the POLICE have. • =sumifs(c2:c14,a2:14,”HP Laser Jet”,b2:b14,”Police”) • Which equals 3 Color Printers Dept Quanity HP Laser Jet Admin 4 HP M553 Construction 5 HP Laser Jet Construction 1 Epson WF2750 Police 4 HP Laser Jet Pro Fire Prevention 1 Canon MF634 Human Svcs 2 HP Laser Jet Police 3 Canon MF634 Recreation 3 HP Laser Jet Parks 1 HP M553 Clerk 1 HP Laser Jet Purchasing 1 Epson WF2750 OEM 1 HP Laser Jet Golf Course 1
  • 10. SUMIF =sumif(condition range,condition, sum range) Sum alternate Rows/Columns Number Amount Condition Alt. Row Sum 1: 183 1 56 0 =sumif(E15:E21,1,D15:D21) 2 35 1 Alt. Row Sum 0: 285 3 66 0 =sumif(E15:E21,0,D15:D21) 4 23 1 5 98 0 6 125 1 7 65 0
  • 11. AVERAGE What it does? averages a group of numbers Syntax: average(of this number range) Example: =average(2,4,6) 4 5 10 =average(c9:d11) 12.4166667 3.5 20 6 30
  • 12. ROUND What it does? rounds a number to the nearest decimal you specify Syntax: round(this number, to this many digits after decimal) Example: =round(12.416667,2) 12.42 Other: =rounddown(12.416667,2) 12.41 =roundup(12.416667,2) 12.42
  • 13. Using Rounding for Budgeting Assessed Value 7,189,343,350 TAX Amount to be Raised RATE no round RATE no round expanded RATE with round Actual Rate Struck Municipal 42,778,836.00 0.60 0.5950 0.595 0.595 Municipal Open Space 1,437,869.00 0.02 0.0200 0.020 0.020 Library 2,871,017.00 0.04 0.0399 0.040 0.039 County 21,720,889.77 0.30 0.3021 0.302 0.303 County Open Space 761,633.70 0.01 0.0106 0.011 0.011 School 132,965,271.00 1.85 1.8495 1.849 1.850 Total 2.82 2.8172 2.8170 2.818 UGH!!!
  • 14. ROMAN/ARABIC What it does? converts a number to roman numeral format or visa versa Syntax: roman(number) arabic("text") Example: =roman(65) LXV =arabic(LXV) 65
  • 15. Logical Formulas • If • And • Or • Not • Choose • Iferror • Istext
  • 16. IF What it does? checks whether a condition is met and returns one value if TRUE and another if FALSE Syntax: if(is-this-true,then do this, or this) Example: =if(25<15,"looser","winner") = winner Other: =sumif(condition range,condition, sum range)
  • 17. IFERROR What it does? an easy way to handle errors in formulas IFERROR returns the value you want incase of an error with the formula Syntax: iferror(formula, value to return if there is an error) Example: =iferror(1/0,"can't divide by zero") can't divide by zero =iferror(0/1,"can't divide by zero") 0
  • 18. Text Formulas • Proper • Trim • Dollar • Rept • Text • Type
  • 19. Shortcuts • Keyboard Shortcuts • Insert Function • Define Name • Error Checking • Watch Window
  • 20. Keyboard Shortcuts • F2 • Ctrl-Home • Double Click to change a tab/sheet name • Copy sheet within a workbook • Right Click to get Menu • Press “Alt” Key and letters appear called “Key Tips”
  • 21. F2
  • 22. Double Click to Change a Tab Name
  • 23. Copy a Sheet ~ Copies WITH Format
  • 25. ALT Key to see “Key Tips”
  • 27. Error Types Error Type When It Happens #DIV/0! When you divide by ZERO #N/A! When a formula or a function inside a formula cannot find the referenced data. #NAME? When the text in a formula is not recognized. #NULL! When a space was used instead of a comma in formulas that reference multiple ranges. A comma is necessary to separate range references.
  • 28. Error Type When It Happens #NUM! When a formula has numeric data #REF! When a reference is invalid. #VALUE! When the wrong type of operand or function argument is used Error Types
  • 31. #N/A! Excel displays this error when a value is not available to a function or formula. =IFERROR(VLOOKUP(D2,$D$6:$E$8,2,TRUE),0)
  • 34. #REF! This can happen when you delete a row or column in error. You can “undo” using Ctrl+Z or the undo on the formula bar. OR fix the formula to be “continuous” =SUM(A2:C2)
  • 35. #VALUE! This is displayed when a cell contains different types of data. One way to fix this is to use =SUM(F2:F5)
  • 36. Absolute and Relative Referencing • Absolute cell reference contains a ($) in a Row and/or Column • Do not change when copied or filled • Use when you want to consistently refer to a certain cell A1 Relative A$1 Column is relative; Row is Constant $A1 Row is relative; Column is absolute $A$1 BOTH are Absolute
  • 37. Order of Operations • The Order of Operations tells Excel which operation to calculate first. 1. Parenthesis 2. Exponents 3. Multiplication & Division 4. Addition & Subtraction
  • 38. Circular Reference • A circular reference occurs when a cell refers to itself.
  • 39.
  • 40.
  • 41. Common Formula Errors Start with an “EQUAL SIGN” = If you omit the equal sign, Excel thinks the data is “TEXT” Match all open and closing parentheses This gets more complicated as you add more formulas =IF(B5<0),”Not Valid”,B5*1.05) – EXTRA Parentheses after <0 Use a colon to indicate a range =SUM(A1:A5) not =SUM(A1 A5) returns #NULL
  • 42. Common Formula Errors Enter all required and correct type of arguments Ex. Cannot combine SUM & REPLACE (Numerical vs Text) Enter numbers without formatting Ex. If you enter 1,000 into a formula vs 1000, it treats it like a comma separator looking at it like “1,000” or 1 CUT vs COPY Relative vs Absolute
  • 43. Formulas inconsistent with other formulas
  • 44. Formulas that omit cells in a group
  • 45. Error Checking ~ Reset Ignored Errors
  • 46. Formulas Referring To Empty Cells
  • 48. Ways to AUDIT your Spreadsheet • Inspect Workbook • F2
  • 49. Find & Select • Find & Select is found on the Home Tab • Find and replace • Find Formulas, Comments, etc
  • 51. Watch Window • Used when cells and their formulas are not visible on a worksheet. • On large spreadsheets, you don’t have to repeatedly go to different parts of you spreadsheet to confirm formula calculations.
  • 52. Add cells to the Watch Window
  • 53. Specify What You Want to “Watch”
  • 54. Now I can see how changes effect amount to be raised no matter where I go in the sheet
  • 57.
  • 62. Do I want Gridlines??? On the View tab, in the Show group, clear the Gridlines check box.
  • 64. Pet PEVES (for me) • Not Saving Your Spreadsheet at A1 (or at the beginning) • Centering Numbers • Different Fonts • No Labels • Not doing the formula in Excel • Inconsistent Number formats • Putting a number into a spreadsheet then making the font “white” so it’s hidden. • Manual indenting vs using the indent function
  • 65. File Names & Printing…
  • 66. Footer: • From Page Setup • I add the Date • &[Date] = 9/27/2017 • File name & path • &[Path]&[File] = E:Par TroyBudgetKnoll Revenue
  • 67. Ways to Screw up your spreadsheet • The sheet has a million rows and I’m going to fill them all!!!!!!!!!! • There are 1,048,576 rows and 16,384 columns • I know a few blank cells won’t matter • I put as much as possible in each cell! • Good example is names – first & last…break data into the smallest reasonable pieces. • I did it myself! • Can build from a template or someone else's spreadsheet • I love to jazz up my spreadsheets with WordArt • I put everything on Sheet1 so it’s easy to find • I put everything on a whole bunch of sheets
  • 68. Ways to Screw up your spreadsheet • I set all my sheets to manual to speed things up!
  • 70.
  • 72. Using the Format Menu on the Ribbon
  • 74.
  • 75. Use Format as Table
  • 76.
  • 77. Trend Analysis ~ Conditional Formatting
  • 78.
  • 79.
  • 80.
  • 84.
  • 85.
  • 86.
  • 89. Enable Worksheet Protection Step 1 • Unlock any cells that need to be editable • Simply uncheck “Locked”
  • 90. Enable Worksheet Protection Step 2 • In Review tab, click Protect Sheet. • Allow users to do specific functions. • Put a Password to unprotect sheet.(Optional)
  • 91.

Editor's Notes

  1. Determine the role of your spreadsheet, P&L , budget, what-if , tables, graphics? Adopt a standard and stick to it-Department should have a certain standard such as naming criteria, formatting & location Work as a team in creating spreadsheets used by a group Identify the audience-TOO much information (that’s me) Include an “about” sheet to document the spreadsheet Design for Longevity Be consistent in formulas and structure
  2. Keep formulas SIMPLE Never embed in a formula something that needs to change TEST YOUR SPREADSHEET Save all the time – I do right after a “change” that I don’t want to recover Build in checks and controls Protect parts of the spreadsheet that aren’t supposed to change
  3. There are 5 important areas in the screen. 1. Quick Access Toolbar: This is a place where all the important tools can be placed. When you start Excel for the very first time, it has only 3 icons (Save, Undo, Redo). But you can add any feature of Excel to to Quick Access Toolbar so that you can easily access it from anywhere (hence the name). 2. Ribbon: Ribbon is like an expanded menu. It depicts all the features of Excel in easy to understand form. Since Excel has 1000s of features, they are grouped in to several ribbons. The most important ribbons are – Home, Insert, Formulas, Page Layout & Data. 3. Formula Bar: This is where any calculations or formulas you write will appear. You will understand the relevance of it once you start building formulas. 4. Spreadsheet Grid: This is where all your numbers, data, charts & drawings will go. Each Excel file can contain several sheets. But the spreadsheet grid shows few rows & columns of active spreadsheet. To see more rows or columns you can use the scroll bars to the left or at bottom. If you want to access other sheets, just click on the sheet name (or use the shortcut CTRL+Page Up or CTRL+Page Down). 5. Status bar: This tells us what is going on with Excel at any time. You can tell if Excel is busy calculating a formula, creating a pivot report or recording a macro by just looking at the status bar. The status bar also shows quick summaries of selected cells (count, sum, average, minimum or maximum values). You can change this by right clicking on it and choosing which summaries to show.
  4. When we speak about functions, they are actually part of a formula 1Functions: included with Excel, functions are engineered formulas that carry out specific calculations. For example, the PI() function returns the value of pi: 3.142... 2References: refer to individual cells or ranges of cells. A2 returns the value in cell A2. 3Constants: numbers or text values entered directly into a formula, such as 2. 4 Operators: The ^ (caret) operator raises a number to a power, and the * (asterisk) operator multiplies. Use + and – add and subtract values, and / to divide.
  5. Sum adds a group of numbers Count Counts the number of cells in a range, but only numbers Counta Counts the nonempty cells Product Multiplies a bunch of numbers
  6. And – checks whether conditions are met or not (TRUE or FALSE) or can be used in a function Or – similar but checks if any conditions are met
  7. Proper – converts text to the proper state where something is all caps or mixed caps and lower case Trim – removes unnecessary spaces in a given text Dollar – Converts a number to $ currency format (can use with a total formula) REPT – repeats a particular text a specific number of times (great for illustrating a graph like number of occurrences graphically with lines) Text – can convert something in text into a number, date or time formula
  8. Define a range name such as data to quickly reference an area in the spreadsheet
  9. F2 – If a formula’s source cells are on the same page, the F2 shortcut puts the cell into edit mode so you can visually see where the data is coming from CTRL HOME Double Click to change a tab/sheet name Copy sheet within a workbook Right click to get menu Press “ALT” key and letters appear called KEY TIPS
  10. In G50
  11. Copying using Format Function on Home Ribbon or “Right” click on the tab
  12. Description Excel displays this error when a column is not wide enough to display all the characters in a cell, or a cell contains negative date or time values. For example, a formula that subtracts a date in the future from a date in the past, such as =06/15/2008-07/01/2008, results in a negative date value. TIP: Try to auto-fit the cell by double-clicking between the column headers. If ### is displayed because Excel can’t display all of the characters this will correct it.
  13. Excel displays this error when a number is divided either by zero (0) or by a cell that contains no value. TIP: Add an error handler like in the following example, which is =IF(C2,B2/C2,0)
  14. Excel displays this error when a value is not available to a function or formula. If you’re using a function like VLOOKUP, does what you’re trying to lookup have a match in the lookup range? Most often it doesn’t. Try using IFERROR to suppress the #N/A. In this case you could use: =IFERROR(VLOOKUP(D2,$D$6:$E$8,2,TRUE),0)
  15. This error is displayed when Excel does not recognize text in a formula. For example, a range name or the name of a function may be spelled incorrectly. NOTE: If you’re using a function, make sure the function name is spelled correctly. In this case SUM is spelled incorrectly. Remove the “e” and Excel will correct it.
  16. Excel displays this error when you specify an intersection of two areas that do not intersect (cross). The intersection operator is a space character that separates references in a formula. NOTE: Make sure your ranges are correctly separated - the areas C2:C3 and E4:E6 do not intersect, so entering the formula =SUM(C2:C3 E4:E6) returns the #NULL! error. Putting a comma between the C and E ranges will correct it =SUM(C2:C3,E4:E6)
  17. Excel displays this error when a cell reference is not valid. For example, you may have deleted cells that were referred to by other formulas, or you may have pasted cells that you moved on top of cells that were referred to by other formulas. Did you accidentally delete a row or column? We deleted column B in this formula, =SUM(A2,B2,C2), and look what happened. Either use Undo (Ctrl+Z) to undo the deletion, rebuild the formula, or use a continuous range reference like this: =SUM(A2:C2), which would have automatically updated when column B was deleted.
  18. Excel can display this error if your formula includes cells that contain different data types. Are you using Math operators (+, -, *, /, ^) with different data types? If so, try using a function instead. In this case =SUM(F2:F5) would correct the problem.
  19. An absolute cell reference is a cell address that contains a dollar sign ($) in the row or column coordinate, or both. When you enter a cell reference in a formula, Excel assumes it is a relative referenceunless you change it to an absolute reference. Absolute and Relative Referencing Reference Type Formula What Happens After Copying the Formula RELATIVE: =A1 Either or both, column A and row #1 can change ABSOLUTE: =$A$1 The column letter A and row number 1 DO NOT CHANGE MIXED: =$A1 The column letter A does NOT change; Row number 1 CAN change. MIXED: =A$1 The column letter A CAN change; Row number 1 does NOT change. For Example:
  20. The order of operations will allow you to solve this problem the right way. The order is this: Parenthesis, Exponents, Multiplication and Division, Addition and Subtraction. Always perform the operations inside a parenthesis first, then do exponents. A simple formula is a mathematical expression with one operator, such as 7+9. A complex formula has more than one mathematical operator, such as 5+2*8. When there is more than one operation in a formula, the order of operations tells Excel which operation to calculate first.
  21. Formulas Ribbon, Error Checking it will tell you at the bottom where the error is.
  22. When Excel thinks there is a mistake Returns an error message like “inconsistent formula” Then Options such as copy the formula from the left Get Help on the error Ignore Error Edit in Formula Bar (at top)
  23. Ribbon > Formulas > Formula Auditing > Error Checking
  24. Another way is to “Sort” to see extremes Use an About or Welcome Sheet
  25. Dependent Traces formula to the dependent cell. Points to the cells that are dependent on the active cell Precedent traces cells provide data to a formula
  26. When cells are not visible on a worksheet, you can watch those cells and their formulas in the Watch Window toolbar. The Watch Window makes it convenient to inspect, audit, or confirm formula calculations and results in large worksheets. By using the Watch Window, you don't need to repeatedly scroll or go to different parts of your worksheet. This toolbar can be moved or docked like any other toolbar. For example, you can dock it on the bottom of the window. The toolbar keeps track of the following cell properties: 1) Workbook, 2) Sheet, 3) Name (if the cell has a corresponding Named Range), 4) Cell address, 5) Value, and 6) Formula.
  27. Select the cells that you want to watch. To select all cells on a worksheet with formulas, on the Home tab, in the Editing group, click Find & Select (or you can use Ctrl+G, or Control+G on the Mac)> Go To Special > Formulas. On the Formulas tab, in the Formula Auditing group, click Watch Window. Confirm that you have selected all of the cells you want to watch and click Add.
  28. Amount to be raised by taxes
  29. Formula auditing
  30. Sometimes, understanding how a nested formula calculates the final result is difficult because there are several intermediate calculations and logical tests. However, by using the Evaluate Formula dialog box, you can see the different parts of a nested formula evaluated in the order the formula is calculated. For example, the formula =IF(AVERAGE(D2:D5)>50,SUM(E2:E5),0)is easier to understand when you can see the following intermediate results:
  31. You can “step In” for more detail or “step Out”
  32. We can show formulas
  33. n the Evaluate Formula dialog box Description =IF(AVERAGE(D2:D5)>50,SUM(E2:E5),0) The nested formula is initially displayed. The AVERAGE function and the SUM function are nested within the IF function. The cell range D2:D5 contains the values 55, 35, 45, and 25, and so the result of the AVERAGE(D2:D5) function is 40. =IF(40>50,SUM(E2:E5),0) The cell range D2:D5 contains the values 55, 35, 45, and 25, and so the result of the AVERAGE(D2:D5) function is 40. =IF(False,SUM(E2:E5),0) Because 40 is not greater than 50, the expression in the first argument of the IF function (the logical_test argument) is False. The IF function returns the value of the third argument (the value_if_false argument). The SUM function is not evaluated because it is the second argument to the IF function (value_if_true argument), and it is returned only when the expression is True. Select the cell that you want to evaluate. Only one cell can be evaluated at a time. Select the Formulas tab > Formula Auditing > Evaluate Formula. Click Evaluate to examine the value of the underlined reference. The result of the evaluation is shown in italics. If the underlined part of the formula is a reference to another formula, click Step In to display the other formula in the Evaluation box. Click Step Out to go back to the previous cell and formula. The Step In button is not available for a reference the second time the reference appears in the formula, or if the formula refers to a cell in a separate workbook. Continue clicking Evaluate until each part of the formula has been evaluated. To see the evaluation again, click Restart. To end the evaluation, click Close.
  34. PRINTING Inserting Moving
  35. There are two advantages to using styles: Speed. When you have a lot of cells to format, it’s faster to apply a style than to apply all the formatting features individually. And if you need to change a formatting feature of all the cells – like just the color or the font – changing the style definition will immediately update the cell formatting. Consistency. When formatting a lot of cells, it’s easy to make a mistake and select a slightly different color or font size. But when you apply styles, the exact, same formatting gets applied every time. Excel has built-in styles that you can use, and you can also modify them and create your own. Here's how.
  36. On the View tab, in the Show group, clear the Gridlines check box.
  37. Formula vs Calculate it then put number in
  38. Make a file name that makes sense.
  39. T1: That sheet has a million rows and I'm going to fill them all!  I use Excel as my database  I know a few blank cells won't matter I always start at A1  I put as much as possible in each cell An Excel sheet isn't a trash compactor. The more data you put into a single cell, the fewer opportunities you'll have to use and extract the data you need. Instead, atomize! Within the context of designing a spreadsheet, atomize means to break down your data into the smallest possible elements. For instance, if you're storing names, split the first and last names into two columns instead of one. If you store the names in firstname lastname format, you can't sort by last name. If you think the easy solution to that dilemma is to use lastname firstname format, you might get a surprise later on — someone is sure to ask for that type by first names. Always break your data into the smallest reasonable pieces. You can concatenate values later, but it's difficult to reverse-engineer data. 7: I did it myself! This is one of those tips that won't benefit the folks who need it the most — they won't recognize themselves. Most of us (and I include myself in this group) don't have all the necessary skills to build from scratch every spreadsheet we need. We're not stupid. We just lack a particular skill set. When you don't feel quite up to the task, rely on someone else. It's okay to start with a prebuilt template and make changes to meet your needs. Your end product will be more dependable and you'll save time. 6: I set all my sheets to manual to speed things up By default, Excel automatically recalculates formulas when a dependent cell changes. In a poorly designed or large workbook, all that calculating can slow things down. A common reaction to a slow workbook is to set the calculation mode to manual. The sheet will then recalculate only when you explicitly tell it to by pressing [F9]. There's an unseen consequence to this madness, though: Eventually, you will refer to a value that hasn't been updated. Manual calculation isn't bad; it just isn't the right fix for a slow workbook. 9
  40. he Quick Analysis tool (available in Excel 2016 and Excel 2013 only) let you total your numbers quickly. Whether it’s a sum, average, or count you want, Excel shows the calculation results right below or next to your numbers. Select the cells that contain numbers you want to add or count. Click the Quick Analysis button  in the bottom-right corner of the selection. Click Totals, move your cursor across the buttons to see the calculation results for your data, and then click the button to apply the totals. Click the Quick Analysis button  in the bottom-right corner of the selection.
  41. Select a blank cell near the data you want to show in a sparkline. On the Insert tab, in the Sparklines group, click Line, Column, or Win/Loss. Sparklines are tiny charts inside single worksheet cells that can be used to visually represent and show a trend in your data. Sparklines can draw attention to important items such as seasonal changes or economic cycles and highlight the maximum and minimum values in a different color. Showing trends in your worksheet data can be useful, especially when you’re sharing your data with other people. Worksheet with sparklines
  42. Restrict your work to Few Columns And Rows (boss proof)
  43. arking a workbook as final will not prevent others from editing it. If you want to prevent people from editing it, you can use the Restrict Access option instead.
  44. Which level of protection should I use? To control the level of access users should have to an Excel file, use file-level protection. Let’s say you have a weekly status report of your team members in an Excel file. You don’t want anyone outside your team to be even able to open the file. There are two options available: If you don’t want others to open your file: You can encrypt the Excel file, which is the most common technique used. This basically means you lock it with a password and nobody except you can open it. If you want to enable Read-only or editing access to different users: Maybe, you want the managers in your team to be able to edit the weekly status report, but team members should only have Read-only access. You can protect the Excel file by specifying two passwords: one to open, and the other to modify. You can later share the appropriate passwords with the team depending on the access they should be given. To control how users should work with worksheets inside a your workbook’s structure, use workbook-level protection. Let’s say your status report workbook has multiple worksheets, and each worksheet is named after a team member. You want to make sure each team member can add data to their own worksheet, but not be able to modify any of the worksheets in the workbook, whether it be adding a new worksheet, or moving worksheets around within the workbook. To control how users should work within an individual worksheet, use worksheet-level protection. Let’s say each worksheet in your status report workbook contains data that is common to all worksheets, like header rows or a specific report layout, and you really don’t want anyone to change it. By protecting your worksheet, you can specify that users can only perform specific functions in a sheet. For example, you can give users the ability to enter data, but keep them from deleting rows or columns, or only insert hyperlinks or sort data.
  45. Longevity