SlideShare ist ein Scribd-Unternehmen logo
1 von 58
Downloaden Sie, um offline zu lesen
Pictures of Team
Vaishnavi
Sanghamitra
Joseph Jeshin
Rea Jeslyn
What is Microsoft Excel?
• Microsoft Excel is a spreadsheet program included in the Microsoft
Office suite of applications. Spreadsheets present tables of values
arranged in rows and columns that can be manipulated mathematically
using both basic and complex arithmetic operations and functions.
• Microsoft Excel has the basic features of all spreadsheets,[2] using a grid
of cells arranged in numbered rows and letter-named columns to
organize data manipulations like arithmetic operations. It has a battery
of supplied functions to answer statistical, engineering and financial
needs. In addition, it can display data as line graphs, histograms and
charts, and with a very limited three-dimensional graphical display. It
allows sectioning of data to view its dependencies on various factors for
different perspectives (using pivot tables and the scenario manager)
• In addition to its standard spreadsheet features, Excel also offers
programming support via Microsoft's Visual Basic for Applications
(VBA), the ability to access data from external sources via
Microsoft’s Dynamic Data Exchange (DDE), and extensive graphing
and charting capabilities.
History of Microsoft Excel
• Microsoft originally marketed a spreadsheet program called Multiplan in 1982,
which was very popular on CP/M systems, but on MS-DOS systems it lost
popularity to Lotus 1-2-3. This promoted development of a new spreadsheet
called Excel which started with the intention to, 'do everything 1-2-3 does and
do it better‘
• Excel was the first spreadsheet that allowed the user to define the appearance
of spreadsheets (fonts, character attributes and cell appearance). It also
introduced intelligent cell recomputation, where only cells dependent on the
cell being modified are updated (previous spreadsheet programs recomputed
everything all the time or waited for a specific user command). Excel has
extensive graphing capabilities.
• When first bundled into
Microsoft Office in 1993,
Microsoft Word and Microsoft
PowerPoint had their GUIs
redesigned for consistency with
Excel, the killer app on the PC at
the time.
Difference between Version
2003 & 2007
Basis 2003 2007 & Above
Extension Extension - .xls Extension - .xlsx
Rows Approx 65,000
rows
More than
10,00,000 rows
Columns 256 columns 16,384 columns
Graphic tools Limited graphic
tools
Better graphic tools
Formula Same formula bar
since Excel 1997
Resizable formula
bar and context
based formula auto
complete
Formatting Conditional
formatting limited
to 3 tests
Many tests are
allowed in the new
version
Colour palette Limited colours Unlimited colours
Shortcut Keys
• Ctrl + Right
Moves to the last cell of the
row
• Ctrl + Left
Moves to the first cell of the
row
• Ctrl + Shift + Right
OR
Shift + Space
Selects the entire row
• Ctrl +Space
OR
Ctrl + Shift + Down
Selects the entire column
• File
• Options
• General
• Colour Scheme
Changing the Colour Scheme
BLACK
GREY
Name Manager
1. Go to formulas
2. Select Name Manager
3. Fill in the required data
Remove Suplicates
Before removing
duplicates
After removing
duplicates
Hide
• Selects columns/ rows
• Right click
• Choose hide option
• Selects columns/ rows
• Right click
• Choose unhide option
Unhide
Group/ Ungroup
• Selects columns/ rows
• Data
• Group
OR
Group
Shift + Alt + Right
Ungroup
Shift + Alt + Left
Before grouping data
After grouping data
Procedure
Sorting
1) Select the data
2) Go to Home
3) Select the ‘Sort and Filter’ option
4) Enter the criteria as appropriate
Filters
1) Select the data
2) Go to home
3) Select the Sort and Filter Option
4) Select filter
5) Filters will be added on the heading and data
could be selected accordingly
Removing blank spaces
1) Selects columns/ rows
2) Use the Go to function
(Ctrl + G)
3) Select Go to Special
4) Select Blanks
5) Right click
6) Select the delete option
7) Select Shift cells up
Data Validation
In the example given the input is
invalid since that data exceeds the
range. Hence the error alert has
been displayed
1. Selects the area where data validation is
to be performed.
2. Go to Data
3. Select Data Validation
4. Input validation criteria
5. Input message
6. Error alert
VALUES
LIST
Data Validation
To input a list with the pass/
fail option
Conditional Formatting
1. Select the data
2. Go to Home
3. Select Conditional formatting
4. Go to Highlight cell rules
5. Choose the option which is appropriate
In this example the option chosen is
to format cells that are less than 25
with
Light Red fill with Dark Text
Referencing
• The ‘$’ symbol is used for referencing.
1. Click a cell where you want to enter a formula.
2. Type = (an equal sign) to begin the formula.
3. Select a cell, and then type an arithmetic operator (+, -, *, or /).
4. Select another cell, and then press the F4 key to make that cell reference absolute.
5. You can continue to press F4 to have Excel cycle through the different reference
types.
6. If necessary, continue entering the formula.
7. Click the Enter button on the formula bar, or
press Enter.
Text to Columns
1. Select the cell which has the data
2. Go to data
3. Select ‘Text to Columns’
4. Select the ‘Delimited’ Option
5. Select the appropriate
delimiters.
In this example commas have
been selected
Background
• Go to the view tab and click on
the check box in show for
gridlines.
Gridlines
• Press on background under the Page
Layout tab to insert a logo or
background to the spreadsheet.
Formulas
(Logical Function)
Sum Function
Formula Autosum Sum Function
Alt + = (Adds the data in the cells)
Average Function
Formula Autosum Average Function
Minimum Function
Formula Autosum Minimum
Maximum Function
Formula Autosum Maximum
Count Function
Formula Autosum Count
IF Function
Formula Logical IF
What does this function do ?
Checks whether a condition is met, and returns one value if TRUE,
and another value if FALSE.
AND Function
Formula Logical AND
What does this function do ?
Checks whether all arguments are TRUE, and returns TRUE if al
arguments are TRUE.
OR Function
Formula Logical OR
What does this function do ?
Checks whether any of the arguments are TRUE, and returns TRUE or
FALSE. Returns FALSE only if all arguments are FALSE.
COUNTA Function
Formula Logical COUNTA
What does this function do ?
Counts the number of cells in a range that are not empty.
COUNTIF Function
Formula Logical COUNTIF
What does this function do ?
Counts the number of cells within a range that meet the given
condition.
COUNTBLANK Function
Formula Logical COUNTBLANK
What does this function do ?
Counts the number of empty cells in a specified range of
cells.
IRERROR Function
Formula Logical IFERROR
What does this function do ?
Returns value_if_error if expression is an error and the value of
the expression itself otherwise.
Formulas
(Text Function)
Concatenate
What does this function do ?
Formula Text Concatenate
Joins several text strings into one text string.
Left/Right
What does this function do ?
Formula Text Left/Right
Returns the specified number of characters from the start of a text string .
Mid
What does this function do ?
Formula Text Left/Right
Returns the characters from the middle of the text string, given a starting
position and length.
Len
What does this function do ?
Formula Text Left/Right
Returns the number of characters in a string.
Trim
What does this function do ?
Formula Text Left/Right
Removes all spaces from a text string except for single spaces between words.
Upper/Lower/Proper
What does this function do ?
Formula Text Upper/Lower/Proper
Coverts a text string to all uppercase/lowercase/propercase (first
letter of each word is in upper case and rest is lower case) letters.
Substitute
What does this function do ?
Formula Text Substitute
Replaces existing text with new text in a string.
Exact
What does this function do ?
Formula Text Substitute
Checks whether two text strings are exactly the same, and returns TRUE
and FALSE. EXACT is case-sensitive.
Date and Time
Current Date – ctrl + “;”
Current Time – ctrl+ shift + “;”
Current Date and Time - =NOW()
STEP 1
STEP 2
STEP 3
RESULT
What if analysis
1. Input the formula
2. Go to Data
3. Select What if analysis
4. Choose which cells to change
5. Enter values for the changing cells
6. Select show summary to obtain result
Consolidate
SHEET 1 SHEET 2
RESULT1. Go to consolidate
2. Enter the reference from Sheet 1 and
select Add
3. Enter the reference from Sheet 2
and select Add
4. Select the operation (Sum/ Count)
5. Select use labels in Top Row and
Top left column
Pivot Tables
1. Select the data
2. Go to ‘Insert’
3. Select Create Pivot Table
4. Choose fields to add
report
5. Select the appropriate
Column/ Row labels and
Report Filter
RESULT WHEN ONLY ONE CUSTOMER IS
SELECTED
Pivot Chart
1. Select the data
2. Go to ‘Insert’
3. Select Create Pivot Chart
4. Choose fields to add
report
5. Select the appropriate
Column/ Row labels and
Report Filter
Dashboard
1. Copy the pivot charts onto a new sheet and do necessary
formatting
2. Go to ‘Insert’
3. Select the ‘Slicer’ option
4. Add necessary slicers
SLICERS
CHARTS
VLookUP
1. Go to functions and choose
vlookup.
2. Enter look up value.
3. Table range under
‘table_array’.
4. Enter the column number
under which the result lies
under ‘Col_index_num’.
5. Choose 1 for ‘True’ for
approximate match and 0 for
‘False’ for Exact match.
HLookUP
1. Go to functions and choose
hlookup.
2. Enter look up value.
3. Table range under
‘table_array’.
4. Enter the row number under
which the result lies under
‘Row_index_num’.
5. Choose 1 for ‘True’ for
approximate match and 0 for
‘False’ for Exact match.
Bar/ Column Charts
What are Bar Charts ?
Bar charts are one of the most
commonly used types of graph and are
used to display and compare the
number, frequency or other measure
for different categories or groups
1. Select the data grid
2. Click on Insert
3. Go to Bar and select the type of
bar chart is required to
represent the data
Bar/Column Charts
• By default the bar chart will
appear.
• By using the formatting tools for
the bar chart the design ,layout
and format of the chart can be
changed as required.
1. Right click on the chart and
go to Format Chart Area to
change the appearance of the
chart.
Bar/ Column Charts
• Changes such as border colour, border styles, shadow, size and other
properties of the charted can be made.
• In the above chart we have made changes in he background, color
scheme, border and glow and soft edges.
Line Chart Pie Chart
A line chart or line graph is a type
of chart which displays information as
a series of data points called 'markers'
connected by straight line segments
A pie chart displays data, information, and
statistics in an easy-to-read 'pie-slice'
format with varying slice sizes telling you
how much of one data element exists.
Legends
What are legends ?
The legend is linked to
the data being graphically
displayed in the plot
area of the chart.
The legend is also known
as a Chart's Key.
Change Chart Type
1. Right click on the chart
2. Change the chart type as per
convenience
3. Change the legend,
formatting and design
A dialogue box full of other chart
types are available.
The data of the previous chart will
automatically be set.
References
• Wikipedia.com
• Webopedia.com
• Haresoftware.com
Microsoft Excel-  basics

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
Training On Microsoft Excel
Training On Microsoft ExcelTraining On Microsoft Excel
Training On Microsoft Excel
 
Ms Excel Basic to Advance Tutorial
Ms Excel Basic to Advance TutorialMs Excel Basic to Advance Tutorial
Ms Excel Basic to Advance Tutorial
 
MS Excel
MS ExcelMS Excel
MS Excel
 
Microsoft Excel Basics
Microsoft Excel BasicsMicrosoft Excel Basics
Microsoft Excel Basics
 
Excel PowerPoint
Excel PowerPointExcel PowerPoint
Excel PowerPoint
 
ms excel presentation...
ms excel presentation...ms excel presentation...
ms excel presentation...
 
Excel training
Excel trainingExcel training
Excel training
 
Excel Basics
Excel  BasicsExcel  Basics
Excel Basics
 
Microsoft Excel Tutorial
Microsoft Excel TutorialMicrosoft Excel Tutorial
Microsoft Excel Tutorial
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Microsoft Excel Basics
Microsoft Excel BasicsMicrosoft Excel Basics
Microsoft Excel Basics
 
Charts in EXCEL
Charts in EXCELCharts in EXCEL
Charts in EXCEL
 
Presentation
PresentationPresentation
Presentation
 
Introduction to Excel
Introduction to ExcelIntroduction to Excel
Introduction to Excel
 
Excel Shortcuts & Formulas
Excel Shortcuts & FormulasExcel Shortcuts & Formulas
Excel Shortcuts & Formulas
 
Excel 2010
Excel 2010Excel 2010
Excel 2010
 
MS Excel 2013
MS Excel 2013MS Excel 2013
MS Excel 2013
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excel
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
 

Andere mochten auch

Communication Skills
Communication SkillsCommunication Skills
Communication SkillsMADAN PANDIA
 
RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947
RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947
RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947haimanti1986
 
Industrial disputes act etc
Industrial disputes act etcIndustrial disputes act etc
Industrial disputes act etcjeshin jose
 
Right To Information And Civil Society Organisations
Right To Information And Civil Society OrganisationsRight To Information And Civil Society Organisations
Right To Information And Civil Society OrganisationsMADAN PANDIA
 
Sale of goods act 1930
Sale of goods act 1930Sale of goods act 1930
Sale of goods act 1930jeshin jose
 
Industrial Dispute Act 1947 Unit V
Industrial Dispute Act 1947  Unit VIndustrial Dispute Act 1947  Unit V
Industrial Dispute Act 1947 Unit VSachin MK
 
effective communication
effective communicationeffective communication
effective communicationjeshin jose
 
Food cultures around the world and different cuisines
Food cultures around the world and different cuisinesFood cultures around the world and different cuisines
Food cultures around the world and different cuisinesjeshin jose
 
how to introduce yourselves
how to introduce yourselveshow to introduce yourselves
how to introduce yourselvesjeshin jose
 

Andere mochten auch (20)

Id Act 1947
Id Act 1947Id Act 1947
Id Act 1947
 
Hinduism1
Hinduism1Hinduism1
Hinduism1
 
Intution
IntutionIntution
Intution
 
Positive Attitude
Positive AttitudePositive Attitude
Positive Attitude
 
Discipline
DisciplineDiscipline
Discipline
 
Vedas
VedasVedas
Vedas
 
Communication Skills
Communication SkillsCommunication Skills
Communication Skills
 
Desaster Mgt
Desaster MgtDesaster Mgt
Desaster Mgt
 
RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947
RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947
RETRENCHMENT UNDER THE INDUSTRIAL DISPUTES ACT, 1947
 
Industrial disputes act etc
Industrial disputes act etcIndustrial disputes act etc
Industrial disputes act etc
 
Right To Information And Civil Society Organisations
Right To Information And Civil Society OrganisationsRight To Information And Civil Society Organisations
Right To Information And Civil Society Organisations
 
Sale of goods act 1930
Sale of goods act 1930Sale of goods act 1930
Sale of goods act 1930
 
Industrial Dispute Act 1947 Unit V
Industrial Dispute Act 1947  Unit VIndustrial Dispute Act 1947  Unit V
Industrial Dispute Act 1947 Unit V
 
Motivation
MotivationMotivation
Motivation
 
effective communication
effective communicationeffective communication
effective communication
 
Positive Attitude
Positive AttitudePositive Attitude
Positive Attitude
 
Food cultures around the world and different cuisines
Food cultures around the world and different cuisinesFood cultures around the world and different cuisines
Food cultures around the world and different cuisines
 
Body Language 187
Body Language 187Body Language 187
Body Language 187
 
how to introduce yourselves
how to introduce yourselveshow to introduce yourselves
how to introduce yourselves
 
Attitude
AttitudeAttitude
Attitude
 

Ähnlich wie Microsoft Excel- basics

27 Excel Hacks to Make You a Superstar
27 Excel Hacks to Make You a Superstar27 Excel Hacks to Make You a Superstar
27 Excel Hacks to Make You a SuperstarAlan Murray
 
Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginnersJitesh Khushalani
 
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
 
Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excelMalika khalil
 
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxDishantGola
 
Office excel tips and tricks 201101
Office excel tips and tricks 201101Office excel tips and tricks 201101
Office excel tips and tricks 201101Vishwanath Ramdas
 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manualjpdas54
 
Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsSmart Chicago Collaborative
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxssuser3d8a50
 
Intro to Excel Basics: Part I
Intro to Excel Basics: Part IIntro to Excel Basics: Part I
Intro to Excel Basics: Part ISi Krishan
 
Focusing on specific data by using filterss
Focusing on specific data by using filterssFocusing on specific data by using filterss
Focusing on specific data by using filterssum5ashm
 

Ähnlich wie Microsoft Excel- basics (20)

Basic excel training
Basic excel trainingBasic excel training
Basic excel training
 
Excel Training
Excel TrainingExcel Training
Excel Training
 
27 Excel Hacks to Make You a Superstar
27 Excel Hacks to Make You a Superstar27 Excel Hacks to Make You a Superstar
27 Excel Hacks to Make You a Superstar
 
Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginners
 
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
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
 
Ms office excel
Ms office excelMs office excel
Ms office excel
 
A excel analysis toolpack -best
A excel analysis toolpack -bestA excel analysis toolpack -best
A excel analysis toolpack -best
 
Office excel tips and tricks 201101
Office excel tips and tricks 201101Office excel tips and tricks 201101
Office excel tips and tricks 201101
 
Excel formulas-manual
Excel formulas-manualExcel formulas-manual
Excel formulas-manual
 
stats
statsstats
stats
 
Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding Functions
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptx
 
Spreadsheet new
Spreadsheet newSpreadsheet new
Spreadsheet new
 
Intro to Excel Basics: Part I
Intro to Excel Basics: Part IIntro to Excel Basics: Part I
Intro to Excel Basics: Part I
 
Focusing on specific data by using filterss
Focusing on specific data by using filterssFocusing on specific data by using filterss
Focusing on specific data by using filterss
 
Excel11
Excel11Excel11
Excel11
 

Kürzlich hochgeladen

CHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptxCHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptxAneriPatwari
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...Nguyen Thanh Tu Collection
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxkarenfajardo43
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Projectjordimapav
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 
Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17Celine George
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxSayali Powar
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptxDhatriParmar
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQuiz Club NITW
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17Celine George
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfPrerana Jadhav
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 

Kürzlich hochgeladen (20)

CHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptxCHEST Proprioceptive neuromuscular facilitation.pptx
CHEST Proprioceptive neuromuscular facilitation.pptx
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
31 ĐỀ THI THỬ VÀO LỚP 10 - TIẾNG ANH - FORM MỚI 2025 - 40 CÂU HỎI - BÙI VĂN V...
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
ClimART Action | eTwinning Project
ClimART Action    |    eTwinning ProjectClimART Action    |    eTwinning Project
ClimART Action | eTwinning Project
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17Tree View Decoration Attribute in the Odoo 17
Tree View Decoration Attribute in the Odoo 17
 
prashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Professionprashanth updated resume 2024 for Teaching Profession
prashanth updated resume 2024 for Teaching Profession
 
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptxBIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
BIOCHEMISTRY-CARBOHYDRATE METABOLISM CHAPTER 2.pptx
 
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
Unraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptxUnraveling Hypertext_ Analyzing  Postmodern Elements in  Literature.pptx
Unraveling Hypertext_ Analyzing Postmodern Elements in Literature.pptx
 
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITWQ-Factor General Quiz-7th April 2024, Quiz Club NITW
Q-Factor General Quiz-7th April 2024, Quiz Club NITW
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17
 
Narcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdfNarcotic and Non Narcotic Analgesic..pdf
Narcotic and Non Narcotic Analgesic..pdf
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 

Microsoft Excel- basics

  • 1.
  • 3. What is Microsoft Excel? • Microsoft Excel is a spreadsheet program included in the Microsoft Office suite of applications. Spreadsheets present tables of values arranged in rows and columns that can be manipulated mathematically using both basic and complex arithmetic operations and functions. • Microsoft Excel has the basic features of all spreadsheets,[2] using a grid of cells arranged in numbered rows and letter-named columns to organize data manipulations like arithmetic operations. It has a battery of supplied functions to answer statistical, engineering and financial needs. In addition, it can display data as line graphs, histograms and charts, and with a very limited three-dimensional graphical display. It allows sectioning of data to view its dependencies on various factors for different perspectives (using pivot tables and the scenario manager) • In addition to its standard spreadsheet features, Excel also offers programming support via Microsoft's Visual Basic for Applications (VBA), the ability to access data from external sources via Microsoft’s Dynamic Data Exchange (DDE), and extensive graphing and charting capabilities.
  • 4. History of Microsoft Excel • Microsoft originally marketed a spreadsheet program called Multiplan in 1982, which was very popular on CP/M systems, but on MS-DOS systems it lost popularity to Lotus 1-2-3. This promoted development of a new spreadsheet called Excel which started with the intention to, 'do everything 1-2-3 does and do it better‘ • Excel was the first spreadsheet that allowed the user to define the appearance of spreadsheets (fonts, character attributes and cell appearance). It also introduced intelligent cell recomputation, where only cells dependent on the cell being modified are updated (previous spreadsheet programs recomputed everything all the time or waited for a specific user command). Excel has extensive graphing capabilities. • When first bundled into Microsoft Office in 1993, Microsoft Word and Microsoft PowerPoint had their GUIs redesigned for consistency with Excel, the killer app on the PC at the time.
  • 5. Difference between Version 2003 & 2007 Basis 2003 2007 & Above Extension Extension - .xls Extension - .xlsx Rows Approx 65,000 rows More than 10,00,000 rows Columns 256 columns 16,384 columns Graphic tools Limited graphic tools Better graphic tools Formula Same formula bar since Excel 1997 Resizable formula bar and context based formula auto complete Formatting Conditional formatting limited to 3 tests Many tests are allowed in the new version Colour palette Limited colours Unlimited colours
  • 6. Shortcut Keys • Ctrl + Right Moves to the last cell of the row • Ctrl + Left Moves to the first cell of the row • Ctrl + Shift + Right OR Shift + Space Selects the entire row • Ctrl +Space OR Ctrl + Shift + Down Selects the entire column
  • 7. • File • Options • General • Colour Scheme Changing the Colour Scheme BLACK GREY
  • 8. Name Manager 1. Go to formulas 2. Select Name Manager 3. Fill in the required data
  • 10. Hide • Selects columns/ rows • Right click • Choose hide option • Selects columns/ rows • Right click • Choose unhide option Unhide
  • 11. Group/ Ungroup • Selects columns/ rows • Data • Group OR Group Shift + Alt + Right Ungroup Shift + Alt + Left Before grouping data After grouping data Procedure
  • 12. Sorting 1) Select the data 2) Go to Home 3) Select the ‘Sort and Filter’ option 4) Enter the criteria as appropriate
  • 13. Filters 1) Select the data 2) Go to home 3) Select the Sort and Filter Option 4) Select filter 5) Filters will be added on the heading and data could be selected accordingly
  • 14. Removing blank spaces 1) Selects columns/ rows 2) Use the Go to function (Ctrl + G) 3) Select Go to Special 4) Select Blanks 5) Right click 6) Select the delete option 7) Select Shift cells up
  • 15. Data Validation In the example given the input is invalid since that data exceeds the range. Hence the error alert has been displayed 1. Selects the area where data validation is to be performed. 2. Go to Data 3. Select Data Validation 4. Input validation criteria 5. Input message 6. Error alert VALUES
  • 16. LIST Data Validation To input a list with the pass/ fail option
  • 17. Conditional Formatting 1. Select the data 2. Go to Home 3. Select Conditional formatting 4. Go to Highlight cell rules 5. Choose the option which is appropriate In this example the option chosen is to format cells that are less than 25 with Light Red fill with Dark Text
  • 18. Referencing • The ‘$’ symbol is used for referencing. 1. Click a cell where you want to enter a formula. 2. Type = (an equal sign) to begin the formula. 3. Select a cell, and then type an arithmetic operator (+, -, *, or /). 4. Select another cell, and then press the F4 key to make that cell reference absolute. 5. You can continue to press F4 to have Excel cycle through the different reference types. 6. If necessary, continue entering the formula. 7. Click the Enter button on the formula bar, or press Enter.
  • 19. Text to Columns 1. Select the cell which has the data 2. Go to data 3. Select ‘Text to Columns’ 4. Select the ‘Delimited’ Option 5. Select the appropriate delimiters. In this example commas have been selected
  • 20. Background • Go to the view tab and click on the check box in show for gridlines. Gridlines • Press on background under the Page Layout tab to insert a logo or background to the spreadsheet.
  • 22. Sum Function Formula Autosum Sum Function Alt + = (Adds the data in the cells)
  • 27. IF Function Formula Logical IF What does this function do ? Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE.
  • 28. AND Function Formula Logical AND What does this function do ? Checks whether all arguments are TRUE, and returns TRUE if al arguments are TRUE.
  • 29. OR Function Formula Logical OR What does this function do ? Checks whether any of the arguments are TRUE, and returns TRUE or FALSE. Returns FALSE only if all arguments are FALSE.
  • 30. COUNTA Function Formula Logical COUNTA What does this function do ? Counts the number of cells in a range that are not empty.
  • 31. COUNTIF Function Formula Logical COUNTIF What does this function do ? Counts the number of cells within a range that meet the given condition.
  • 32. COUNTBLANK Function Formula Logical COUNTBLANK What does this function do ? Counts the number of empty cells in a specified range of cells.
  • 33. IRERROR Function Formula Logical IFERROR What does this function do ? Returns value_if_error if expression is an error and the value of the expression itself otherwise.
  • 35. Concatenate What does this function do ? Formula Text Concatenate Joins several text strings into one text string.
  • 36. Left/Right What does this function do ? Formula Text Left/Right Returns the specified number of characters from the start of a text string .
  • 37. Mid What does this function do ? Formula Text Left/Right Returns the characters from the middle of the text string, given a starting position and length.
  • 38. Len What does this function do ? Formula Text Left/Right Returns the number of characters in a string.
  • 39. Trim What does this function do ? Formula Text Left/Right Removes all spaces from a text string except for single spaces between words.
  • 40. Upper/Lower/Proper What does this function do ? Formula Text Upper/Lower/Proper Coverts a text string to all uppercase/lowercase/propercase (first letter of each word is in upper case and rest is lower case) letters.
  • 41. Substitute What does this function do ? Formula Text Substitute Replaces existing text with new text in a string.
  • 42. Exact What does this function do ? Formula Text Substitute Checks whether two text strings are exactly the same, and returns TRUE and FALSE. EXACT is case-sensitive.
  • 43. Date and Time Current Date – ctrl + “;” Current Time – ctrl+ shift + “;” Current Date and Time - =NOW()
  • 44. STEP 1 STEP 2 STEP 3 RESULT What if analysis 1. Input the formula 2. Go to Data 3. Select What if analysis 4. Choose which cells to change 5. Enter values for the changing cells 6. Select show summary to obtain result
  • 45. Consolidate SHEET 1 SHEET 2 RESULT1. Go to consolidate 2. Enter the reference from Sheet 1 and select Add 3. Enter the reference from Sheet 2 and select Add 4. Select the operation (Sum/ Count) 5. Select use labels in Top Row and Top left column
  • 46. Pivot Tables 1. Select the data 2. Go to ‘Insert’ 3. Select Create Pivot Table 4. Choose fields to add report 5. Select the appropriate Column/ Row labels and Report Filter RESULT WHEN ONLY ONE CUSTOMER IS SELECTED
  • 47. Pivot Chart 1. Select the data 2. Go to ‘Insert’ 3. Select Create Pivot Chart 4. Choose fields to add report 5. Select the appropriate Column/ Row labels and Report Filter
  • 48. Dashboard 1. Copy the pivot charts onto a new sheet and do necessary formatting 2. Go to ‘Insert’ 3. Select the ‘Slicer’ option 4. Add necessary slicers SLICERS CHARTS
  • 49. VLookUP 1. Go to functions and choose vlookup. 2. Enter look up value. 3. Table range under ‘table_array’. 4. Enter the column number under which the result lies under ‘Col_index_num’. 5. Choose 1 for ‘True’ for approximate match and 0 for ‘False’ for Exact match.
  • 50. HLookUP 1. Go to functions and choose hlookup. 2. Enter look up value. 3. Table range under ‘table_array’. 4. Enter the row number under which the result lies under ‘Row_index_num’. 5. Choose 1 for ‘True’ for approximate match and 0 for ‘False’ for Exact match.
  • 51. Bar/ Column Charts What are Bar Charts ? Bar charts are one of the most commonly used types of graph and are used to display and compare the number, frequency or other measure for different categories or groups 1. Select the data grid 2. Click on Insert 3. Go to Bar and select the type of bar chart is required to represent the data
  • 52. Bar/Column Charts • By default the bar chart will appear. • By using the formatting tools for the bar chart the design ,layout and format of the chart can be changed as required. 1. Right click on the chart and go to Format Chart Area to change the appearance of the chart.
  • 53. Bar/ Column Charts • Changes such as border colour, border styles, shadow, size and other properties of the charted can be made. • In the above chart we have made changes in he background, color scheme, border and glow and soft edges.
  • 54. Line Chart Pie Chart A line chart or line graph is a type of chart which displays information as a series of data points called 'markers' connected by straight line segments A pie chart displays data, information, and statistics in an easy-to-read 'pie-slice' format with varying slice sizes telling you how much of one data element exists.
  • 55. Legends What are legends ? The legend is linked to the data being graphically displayed in the plot area of the chart. The legend is also known as a Chart's Key.
  • 56. Change Chart Type 1. Right click on the chart 2. Change the chart type as per convenience 3. Change the legend, formatting and design A dialogue box full of other chart types are available. The data of the previous chart will automatically be set.