SlideShare a Scribd company logo
Microsoft Excel
By; Mekonnen Y.
April, 2016
Ethiopia
Outline
• Understanding Spreadsheets
• Pivot table
• Chart
• Validation
Excel Basics
We will use Excel to:
1. Store and organize data,
2. Analyze data, and
3. Represent data graphically (e.g., in bar graphs, histograms, and
scatterplots)
Excel Basics
• Microsoft Excel consists of Workbooks
• Each Workbook is made up of an infinite number of worksheets
• It is possible to name each worksheet to aid in organizing your data
What is a spreadsheet/worksheet ?
 A program that displays data (text & numbers) in a table by
rows and columns
 A grid with columns & rows
Uses of Spreadsheet
• Prepare budgets
• Financial statements
• Inventory management
• Create charts
What is a cell?
The intersection of a row and
column
What 3 things can you type into a cell?
•Label = words or letters
•Value = numbers
•Formula = statement that performs a calculation
What is a cell range?
A group of cells that are closely together
What are columns?
Vertical arrangements of cells; identified
by letters
What are rows?
Horizontal arrangement
of cells; identified by
numbers
Excel 2003 vs. Excel 2007 vs. Excel 2021
256 Columns 16,384 Columns
65,536 Rows 1,048,576 Rows
What is a Cell Address (Reference)?
This is a column letter and row number
combination, such as A1, B2
What is a name box?
Displays the name of the active cell or range
What is a formula bar?
Displays the data or formula stored in the active
cell
Excel Basics
 Excel allows for some basic actions which we
have used before in other programs
 Copy/Paste (Rows, Columns, Cells, etc.)
 Insert (Rows and Columns)
 Sort (Alphabetically, Numerically,
Chronologically, etc.)
Inserting Rows and Columns
• The Insert command offers several techniques
to insert rows, columns, and cells
Deleting Rows and Columns
• The Delete command offers several techniques
to remove rows, columns, and cells
Formatting
 Merging allows us to combine two or more
adjacent cells physically (disregarding
contents)
 To merge cells simply highlight the cells to be merged
and select the merge option from the home menu
 Cells can also be formatted with options you
are probably familiar with (bold, font size,
borders, etc.)
 These options can be found scattered on the home
menu or under the format cells menu via the right-click
list. Even whole rows and columns can be formatted.
Let’s take a look!
Formatting
 Excel also allows us to format cells by their
data types. This is useful for a variety of
reasons (sorting, manipulating, rounding,
etc.)
 To format the cell’s data type, in the numbers
section of the home menu, select the number
drop-down menu (defaults to General) and
select the new type desired
Adjusting Column Width
• Column width is the horizontal measurement
of a column
Adjusting Row Height
• Row height is the vertical measurement of a
row
– The row height is automatically adjusted with a font
size increase
– Using ALT+Enter to create multiple lines may
require a row height adjustment
– Select Row Height from the Format menu
Data Entry
There are two ways to enter information into a cell:
1. Type directly into the
cell.
Click on a cell, and type in
the data (numbers or text)
and press Enter.
2. Type into the formula
bar.
Click on a cell, and then
click in the formula bar (the
space next to the ). Now
type the data into the bar
and press Enter.
Entering and Editing Cell Data
• Excel supports text, values, dates, and formula
results
Numeric Formats
Numeric Formats Continued
Numeric Formats Continued
Data Removal
 Data can be removed from a cell, column, or
row easily
 Here are a few methods:
 Click the column or row heading that you want
deleted, then click the Delete in the Cells group on the
Home tab
 Another method for entire row/column deletion is to
click a cell in the row or column and follow the above
method respectively
 Delete methods are also found via the right-click menu
 To remove data from a cell or group of cells, simply
highlight those to be deleted and press delete
• A range is a rectangular group of cells
• A nonadjacent range contains a group of
ranges that are not next to each other
Selecting a Cell Range
Auto Fill
 Auto Fill enables us to copy the contents of a
cell or a range of cells by dragging the fill
handle over adjacent cells or a range
 To use Auto Fill:
 1. Click the cell with the content you want to copy
to make it the active cell
 2. Position the pointer over the bottom-right
corner of the cell until it changes to the fill pointer
(a thin black plus sign)
 3. Drag the fill handle to repeat the content in
other cells
Formulas and Functions
• Formulas are equations that perform calculations in your
spreadsheet. Formulas always begin with an equals sign (=). When
you enter an equals sign into a cell, you are basically telling Excel to
“calculate this.”
• Functions are Excel-defined formulas. They take data you select and
enter, perform calculations on them, and return value(s).
Mathematical Symbols
Order of Precedence
• Order of precedence (operations) controls the
sequence in which math operators are computed
– Parentheses
– Exponentiation
– Multiplication and Division
– Addition and Subtraction
Cell References in Formulas
• It is best to use cell addresses in formulas versus
actual data
– If cell A1 contains value 5 and you need to add B1
to this value, use =A1+B1 versus =5+B1
• If the data changes, Excel will recalculate the
result
Functions
• All functions have a common format – the equals sign followed
by the function name followed by the input in parentheses.
• The input for a function can be either:
• A set of numbers (e.g., “=AVERAGE(2, 3, 4, 5)”)
• This tells Excel to calculate the average of these numbers.
• A reference to cell(s) (e.g., “=AVERAGE(B1:B18) or “=AVERAGE (B1,
B2, B3, B4, B5, B6, B7, B8)”
• This tells Excel to calculate the average of the data that appear in all
the cells from B1 to B8.
• You can either type these cell references in by hand or by clicking and
dragging with your mouse to select the cells.
Functions for Descriptive Statistics
=AVERAGE(first cell:last cell): calculates the mean
=MEDIAN(first cell:last cell): calculates the median
=MODE(first cell:last cell): calculates the mode
=VARP(first cell:last cell): calculates the variance
=STDEVP(first cell:last cell): calculates the standard deviation
 You may directly write the functions for these statistics into
cells or the formula bar, OR
 You may use the function wizard ( in the toolbar)
Below are several functions you may need to
learn for this class.
What is an active cell?
The cell in which you are currently
working (normally the cell is
surrounded by a black border)
What is a function?
A built-in formula that is a shortcut for common
calculations such as addition and average.
What are Operation Symbols?
Instruct the computer as to what mathematical
operations to perform
Operation Symbols
•Addition (+)
•Subtraction (-)
•Multiplication (*)
•Division (/)
How do you key a formula?
You combine numbers, cell addresses
(references), Operation symbols
and/or functions
Ex: =4 + 5; =B1 * B2
Order of Operations
• Completes formulas in this order:
1. Parentheses
2. Exponents
3. Multiplication
4. Division
5. Addition
6. Subtraction
Example:
Formula: 5+2*7 Result: 19
Formula: (5+2)*7 Result: 49
What is a column width tool?
Tool that changes the width of the
columns on a spreadsheet
What is a row height tool?
Tool that changes the height of rows on
a spreadsheet
What is the Fill Handle Tool?
Used to copy data & formulas to another
cell; and create a series
What is Auto Sum Tool?
Automatically creates a formula to add a
series of numbers in a spreadsheet
What is a Chart?
Graphic representations used to
compare & contrast worksheet data
What is sorting?
Organizing or rearranging data in either
ascending or descending order
Definitions….
Sort Ascending – arranges records from A to Z or
smallest to largest
Sort Descending – arranges records from Z to A or
largest to smallest
Common formula errors
Thank you for listening!

More Related Content

PPT
Introduction to excel with notes and other
siddharthjain301513
 
PPT
Microsoft Excel Tutorials-Beginners .ppt
rpdakshina
 
PPT
Intro_Excel_FA12ff.ppthhhhhhhhhhhhhhhhhhhhhhhhhhhhh
BagusSaputra86
 
PPT
Intro_Excel_FA12.ppt22222222222222222222222222222
BagusSaputra86
 
PPT
Intro_Excel_FA12.ppt Intro_Excel_FA12.pp
macraaiclass
 
PPT
Introduction to Excel - The Basics for Beginners
PubuduPalliyage1
 
PPT
Intro toooooooooooooooExcel_FA12 (1).ppt
jawariaKhan5
 
PPT
Assencial Training Course _Excel_FA12.ppt
DahirAbdiMaxamuud
 
Introduction to excel with notes and other
siddharthjain301513
 
Microsoft Excel Tutorials-Beginners .ppt
rpdakshina
 
Intro_Excel_FA12ff.ppthhhhhhhhhhhhhhhhhhhhhhhhhhhhh
BagusSaputra86
 
Intro_Excel_FA12.ppt22222222222222222222222222222
BagusSaputra86
 
Intro_Excel_FA12.ppt Intro_Excel_FA12.pp
macraaiclass
 
Introduction to Excel - The Basics for Beginners
PubuduPalliyage1
 
Intro toooooooooooooooExcel_FA12 (1).ppt
jawariaKhan5
 
Assencial Training Course _Excel_FA12.ppt
DahirAbdiMaxamuud
 

Similar to Microsoft Excel Core Points Training.pptx (20)

PPT
introduction to Microsoft excel for beginner
TREEOFLIFE3
 
PPT
Intro_Excel_FA14 powerpoint complete.ppt
prashantkumarsinghui
 
PPT
Intro_Excel_FA12.ppt Introduction to Excel
amank64
 
PPT
the power point presentation of How to use MS excel
kasaveera916
 
PPT
Intro_Excel_FA12eeeeeeeeeeeeeeeeeeeeeeee
DeepakPrajapati413842
 
PPTX
Excel Basics presentation for beginners and students
nishithsoni5
 
PPT
If you need help with this file, such as explaining its contents, summarizing...
HarmsupMao
 
PPT
An introduction to the Microsoft Excel 2010
hassanbokhari14
 
PPT
Intro_Excel_FA12 Intro_Excel_FA12Intro_Excel_FA12
trainer310
 
PPT
introduction to microsoft excel functions and formulas.ppt
euphymialuxflorettel
 
PPT
Introduction of Excel and describe the excel
parmjeetsingh5014
 
PPT
Intro_Excel_FA12.ppt
rajasekar643931
 
PDF
Using procedure of excel and methods to use they way and design
BhavadharaniR
 
PPTX
Excel_Breif_Overview.pptx
Nitish Nagar
 
DOC
Ms office excel
Allan Baldejo
 
PPTX
Excel 2007 for Retail
Soumit Ghosh
 
PPTX
MS Excel Manual/ Easy Notes/Basic Computer
kainatKausar1
 
PPT
Uses & applications of microsoft excel in vph research
Dr Alok Bharti
 
PPTX
Introduction to Basic Spreadsheets
Kingston Tagoe
 
PDF
NCompass Live: Excel for Librarians
Nebraska Library Commission
 
introduction to Microsoft excel for beginner
TREEOFLIFE3
 
Intro_Excel_FA14 powerpoint complete.ppt
prashantkumarsinghui
 
Intro_Excel_FA12.ppt Introduction to Excel
amank64
 
the power point presentation of How to use MS excel
kasaveera916
 
Intro_Excel_FA12eeeeeeeeeeeeeeeeeeeeeeee
DeepakPrajapati413842
 
Excel Basics presentation for beginners and students
nishithsoni5
 
If you need help with this file, such as explaining its contents, summarizing...
HarmsupMao
 
An introduction to the Microsoft Excel 2010
hassanbokhari14
 
Intro_Excel_FA12 Intro_Excel_FA12Intro_Excel_FA12
trainer310
 
introduction to microsoft excel functions and formulas.ppt
euphymialuxflorettel
 
Introduction of Excel and describe the excel
parmjeetsingh5014
 
Intro_Excel_FA12.ppt
rajasekar643931
 
Using procedure of excel and methods to use they way and design
BhavadharaniR
 
Excel_Breif_Overview.pptx
Nitish Nagar
 
Ms office excel
Allan Baldejo
 
Excel 2007 for Retail
Soumit Ghosh
 
MS Excel Manual/ Easy Notes/Basic Computer
kainatKausar1
 
Uses & applications of microsoft excel in vph research
Dr Alok Bharti
 
Introduction to Basic Spreadsheets
Kingston Tagoe
 
NCompass Live: Excel for Librarians
Nebraska Library Commission
 
Ad

Recently uploaded (20)

PPTX
Explanation about Structures in C language.pptx
Veeral Rathod
 
PDF
Why Use Open Source Reporting Tools for Business Intelligence.pdf
Varsha Nayak
 
PPTX
TestNG for Java Testing and Automation testing
ssuser0213cb
 
PDF
Community & News Update Q2 Meet Up 2025
VictoriaMetrics
 
PDF
Become an Agentblazer Champion Challenge
Dele Amefo
 
PPTX
The-Dawn-of-AI-Reshaping-Our-World.pptxx
parthbhanushali307
 
PDF
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
PPTX
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
PDF
The Role of Automation and AI in EHS Management for Data Centers.pdf
TECH EHS Solution
 
PPT
Order to Cash Lifecycle Overview R12 .ppt
nbvreddy229
 
PPTX
AIRLINE PRICE API | FLIGHT API COST |
philipnathen82
 
PDF
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pdf
Certivo Inc
 
PDF
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
PDF
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
PPTX
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
QAware_Mario-Leander_Reimer_Architecting and Building a K8s-based AI Platform...
QAware GmbH
 
DOCX
The Future of Smart Factories Why Embedded Analytics Leads the Way
Varsha Nayak
 
PPTX
Role Of Python In Programing Language.pptx
jaykoshti048
 
PDF
A REACT POMODORO TIMER WEB APPLICATION.pdf
Michael624841
 
PDF
Bandai Playdia The Book - David Glotz
BluePanther6
 
Explanation about Structures in C language.pptx
Veeral Rathod
 
Why Use Open Source Reporting Tools for Business Intelligence.pdf
Varsha Nayak
 
TestNG for Java Testing and Automation testing
ssuser0213cb
 
Community & News Update Q2 Meet Up 2025
VictoriaMetrics
 
Become an Agentblazer Champion Challenge
Dele Amefo
 
The-Dawn-of-AI-Reshaping-Our-World.pptxx
parthbhanushali307
 
Teaching Reproducibility and Embracing Variability: From Floating-Point Exper...
University of Rennes, INSA Rennes, Inria/IRISA, CNRS
 
Web Testing.pptx528278vshbuqffqhhqiwnwuq
studylike474
 
The Role of Automation and AI in EHS Management for Data Centers.pdf
TECH EHS Solution
 
Order to Cash Lifecycle Overview R12 .ppt
nbvreddy229
 
AIRLINE PRICE API | FLIGHT API COST |
philipnathen82
 
PFAS Reporting Requirements 2026 Are You Submission Ready Certivo.pdf
Certivo Inc
 
Build Multi-agent using Agent Development Kit
FadyIbrahim23
 
On Software Engineers' Productivity - Beyond Misleading Metrics
Romén Rodríguez-Gil
 
Visualising Data with Scatterplots in IBM SPSS Statistics.pptx
Version 1 Analytics
 
QAware_Mario-Leander_Reimer_Architecting and Building a K8s-based AI Platform...
QAware GmbH
 
The Future of Smart Factories Why Embedded Analytics Leads the Way
Varsha Nayak
 
Role Of Python In Programing Language.pptx
jaykoshti048
 
A REACT POMODORO TIMER WEB APPLICATION.pdf
Michael624841
 
Bandai Playdia The Book - David Glotz
BluePanther6
 
Ad

Microsoft Excel Core Points Training.pptx

  • 1. Microsoft Excel By; Mekonnen Y. April, 2016 Ethiopia
  • 2. Outline • Understanding Spreadsheets • Pivot table • Chart • Validation
  • 3. Excel Basics We will use Excel to: 1. Store and organize data, 2. Analyze data, and 3. Represent data graphically (e.g., in bar graphs, histograms, and scatterplots)
  • 4. Excel Basics • Microsoft Excel consists of Workbooks • Each Workbook is made up of an infinite number of worksheets • It is possible to name each worksheet to aid in organizing your data
  • 5. What is a spreadsheet/worksheet ?  A program that displays data (text & numbers) in a table by rows and columns  A grid with columns & rows
  • 6. Uses of Spreadsheet • Prepare budgets • Financial statements • Inventory management • Create charts
  • 7. What is a cell? The intersection of a row and column
  • 8. What 3 things can you type into a cell? •Label = words or letters •Value = numbers •Formula = statement that performs a calculation
  • 9. What is a cell range? A group of cells that are closely together
  • 10. What are columns? Vertical arrangements of cells; identified by letters
  • 11. What are rows? Horizontal arrangement of cells; identified by numbers
  • 12. Excel 2003 vs. Excel 2007 vs. Excel 2021 256 Columns 16,384 Columns 65,536 Rows 1,048,576 Rows
  • 13. What is a Cell Address (Reference)? This is a column letter and row number combination, such as A1, B2
  • 14. What is a name box? Displays the name of the active cell or range
  • 15. What is a formula bar? Displays the data or formula stored in the active cell
  • 16. Excel Basics  Excel allows for some basic actions which we have used before in other programs  Copy/Paste (Rows, Columns, Cells, etc.)  Insert (Rows and Columns)  Sort (Alphabetically, Numerically, Chronologically, etc.)
  • 17. Inserting Rows and Columns • The Insert command offers several techniques to insert rows, columns, and cells
  • 18. Deleting Rows and Columns • The Delete command offers several techniques to remove rows, columns, and cells
  • 19. Formatting  Merging allows us to combine two or more adjacent cells physically (disregarding contents)  To merge cells simply highlight the cells to be merged and select the merge option from the home menu  Cells can also be formatted with options you are probably familiar with (bold, font size, borders, etc.)  These options can be found scattered on the home menu or under the format cells menu via the right-click list. Even whole rows and columns can be formatted. Let’s take a look!
  • 20. Formatting  Excel also allows us to format cells by their data types. This is useful for a variety of reasons (sorting, manipulating, rounding, etc.)  To format the cell’s data type, in the numbers section of the home menu, select the number drop-down menu (defaults to General) and select the new type desired
  • 21. Adjusting Column Width • Column width is the horizontal measurement of a column
  • 22. Adjusting Row Height • Row height is the vertical measurement of a row – The row height is automatically adjusted with a font size increase – Using ALT+Enter to create multiple lines may require a row height adjustment – Select Row Height from the Format menu
  • 23. Data Entry There are two ways to enter information into a cell: 1. Type directly into the cell. Click on a cell, and type in the data (numbers or text) and press Enter. 2. Type into the formula bar. Click on a cell, and then click in the formula bar (the space next to the ). Now type the data into the bar and press Enter.
  • 24. Entering and Editing Cell Data • Excel supports text, values, dates, and formula results
  • 28. Data Removal  Data can be removed from a cell, column, or row easily  Here are a few methods:  Click the column or row heading that you want deleted, then click the Delete in the Cells group on the Home tab  Another method for entire row/column deletion is to click a cell in the row or column and follow the above method respectively  Delete methods are also found via the right-click menu  To remove data from a cell or group of cells, simply highlight those to be deleted and press delete
  • 29. • A range is a rectangular group of cells • A nonadjacent range contains a group of ranges that are not next to each other Selecting a Cell Range
  • 30. Auto Fill  Auto Fill enables us to copy the contents of a cell or a range of cells by dragging the fill handle over adjacent cells or a range  To use Auto Fill:  1. Click the cell with the content you want to copy to make it the active cell  2. Position the pointer over the bottom-right corner of the cell until it changes to the fill pointer (a thin black plus sign)  3. Drag the fill handle to repeat the content in other cells
  • 31. Formulas and Functions • Formulas are equations that perform calculations in your spreadsheet. Formulas always begin with an equals sign (=). When you enter an equals sign into a cell, you are basically telling Excel to “calculate this.” • Functions are Excel-defined formulas. They take data you select and enter, perform calculations on them, and return value(s).
  • 33. Order of Precedence • Order of precedence (operations) controls the sequence in which math operators are computed – Parentheses – Exponentiation – Multiplication and Division – Addition and Subtraction
  • 34. Cell References in Formulas • It is best to use cell addresses in formulas versus actual data – If cell A1 contains value 5 and you need to add B1 to this value, use =A1+B1 versus =5+B1 • If the data changes, Excel will recalculate the result
  • 35. Functions • All functions have a common format – the equals sign followed by the function name followed by the input in parentheses. • The input for a function can be either: • A set of numbers (e.g., “=AVERAGE(2, 3, 4, 5)”) • This tells Excel to calculate the average of these numbers. • A reference to cell(s) (e.g., “=AVERAGE(B1:B18) or “=AVERAGE (B1, B2, B3, B4, B5, B6, B7, B8)” • This tells Excel to calculate the average of the data that appear in all the cells from B1 to B8. • You can either type these cell references in by hand or by clicking and dragging with your mouse to select the cells.
  • 36. Functions for Descriptive Statistics =AVERAGE(first cell:last cell): calculates the mean =MEDIAN(first cell:last cell): calculates the median =MODE(first cell:last cell): calculates the mode =VARP(first cell:last cell): calculates the variance =STDEVP(first cell:last cell): calculates the standard deviation  You may directly write the functions for these statistics into cells or the formula bar, OR  You may use the function wizard ( in the toolbar) Below are several functions you may need to learn for this class.
  • 37. What is an active cell? The cell in which you are currently working (normally the cell is surrounded by a black border)
  • 38. What is a function? A built-in formula that is a shortcut for common calculations such as addition and average.
  • 39. What are Operation Symbols? Instruct the computer as to what mathematical operations to perform
  • 40. Operation Symbols •Addition (+) •Subtraction (-) •Multiplication (*) •Division (/)
  • 41. How do you key a formula? You combine numbers, cell addresses (references), Operation symbols and/or functions Ex: =4 + 5; =B1 * B2
  • 42. Order of Operations • Completes formulas in this order: 1. Parentheses 2. Exponents 3. Multiplication 4. Division 5. Addition 6. Subtraction Example: Formula: 5+2*7 Result: 19 Formula: (5+2)*7 Result: 49
  • 43. What is a column width tool? Tool that changes the width of the columns on a spreadsheet
  • 44. What is a row height tool? Tool that changes the height of rows on a spreadsheet
  • 45. What is the Fill Handle Tool? Used to copy data & formulas to another cell; and create a series
  • 46. What is Auto Sum Tool? Automatically creates a formula to add a series of numbers in a spreadsheet
  • 47. What is a Chart? Graphic representations used to compare & contrast worksheet data
  • 48. What is sorting? Organizing or rearranging data in either ascending or descending order
  • 49. Definitions…. Sort Ascending – arranges records from A to Z or smallest to largest Sort Descending – arranges records from Z to A or largest to smallest
  • 51. Thank you for listening!