Trainer Excel Basics & Advanced SL - No Topic Min Day 2
Trainer Excel Basics & Advanced SL - No Topic Min Day 2
com
Formulas
1 Basics 30
2 Referencing 50
Relative, absolute and mixed referencing
3 Sum 30 Day 3
4 If 60
5 Sumif 30
Tea Break 10
Point No Particulars
1 Part of Microsoft office Suite, by far most popular spreadsheet
2 Few Uses of Excel
Number Crunching
Creating charts
Organizing lists and data
Accessing other data
Creating Graphics and diagrams (flow charts)
3 Workbooks, Worksheets, Cells and Range
Workbooks
Add New - File-New-WorkBook or Righ Click in Explorer Mode -New -Microsoft Excel
Worksheet
WorkSheets
How Many in a WorkBook ?
How to Set the Default Number
Insert,Delete,Move,Copy(New/Exsiting),Rename,Group,SelectAll,Activate,Hide,UnHide
,Background
Cells
How Many in a sheet ?
Cell Names
Cell Formats
Number
Alignment
Font
Borders
Fill
Protection
Rows,Colums
Height,Width,Insert,Delete
Using Keyboard
Up arrow
Down Arrow
Left Arrow
Right Arrow
Pgup
Pgdn
Ctrl + Pgup
Ctrl + Pgdn
Move active cell up
Move active cell Down
Move active cell left
Move active cell Right
Move active cell Up one screen
Move active cell down one screen
Move up one worksheet
Move down one worksheet
Group of Cells is called a Range
Cell Formats Format-->Cells or Rigth Click --->Format Cells
Default Format General
Number
Decimal Comm Sep
452435.525 452435.53 452,435.53
-452435.525 -452435.53 452435.53 -452435.53
Custom 1. You can specify up to four sections of format codes. The sections,
separated by semicolons, define the formats for positive numbers,
negative numbers, zero values, and text, in that order. If you specify
only two sections, the first is used for positive numbers and zeros, and
the second is used for negative numbers. If you specify one section, all
numbers use that format. If you skip a section, include the ending
semicolon for that section.
000 1 001
2 002
Using text
#,##0 1500 1,589
#,##0 "US Dollars" 1500 1,500 US Dollars
"Amount: "General 1500 Amount: 1500
"The amount is "#,##0" dollars" 1500 The Amt is 1,500 Dollars
Data Validation
0.00;"Positive numbers only!" 189 189.00
-789 Positive Numbers Only
Date Formats
Special symbols
©General 1994 ©1994
General;General;General;General® Registered Registered®
Descriptive
"Positive";"Negative";"Zero";"Text" 12 Positive
-12 Negative
0 Zero
abc Text
[>=10000000]##\,##\,##\,##0;[>=100000]##\,##\,##0;##,##0 4,569,785
Magic Fill
-£ 4,588.00
(Alt 0169)
(Alt 0174)
] thru [color56].
Quick Access Tool bar
Ribbon Tabs
Button Groups
Formula Bar
Name Box
Work Sheets
Status Bar
Note:
Types of data in excel
Numerical data
Text
Formulas
Text that begins with a number is considered as Text, hence the cell cannot be used for numeric calculations
Eg: 12apples
Edit text
To edit text or value in a cell press F2 and then edit/ delete or click in formula bar and edit
Double click in cell and edit
Word "Edit" appears on the left side of the "Status Bar"
In edit if you click on Home option it will take to the beginning of the cell
Tip : When a range of cells is selected, excel automatically moves the cell pointer to the next cell in the range when you pr
Use Ctrl+enter to place information into multiple cells simultaneously
Goto
Find & Select on Home tab - short cut - Ctrl + G
Special - helps you select cells with special features
n the range when you press enter key
Paste Special
Function Action
1 All Copies everything - Value, text and formatting
2 Formulas Copies only the formulas - No formatting
3 Values Copies only the Value - formulas will get erased
4 Formats Copies only the formats
5 Comments Copies only the comments of the cell
6 Validation Copies only Validation criteria
7 All Except Borders Copies everything other than borders
8 Column Width Copies Column width information
Operations
1 None
2 Add
3 Subract
4 Multiply
5 Divide
6 Skip Blanks
7 Transpose
Formula Basics
Mathematical Operations
Cell references
Values or text
Worksheet functions such as SUM or AVERAGE
Operator Name
+ Addition
- Subtraction
* Multiplication
/ Division
^ Exponentiation
& Concatenation
= Logical comparison (equal to)
> Logical comparison (Greater than)
< Logical Comparison (less than)
>= Logical comparison (Greater than or Equal to)
<= Logical Comparison (less than or equal to)
<> Logical Comparison (not equal to)
Parenthesis
2
3
5
Formula -1 4
Relative Referencing
Item Quantity Price Total
Chair 4 ₹ 125.00
Desk 4 ₹ 695.00
Lamp 3 ₹ 39.95
Absolute referencing
Item Quantity Price Total Sales Tax
Chair 4 ₹ 125.00 ₹ 500.00
Desk 4 ₹ 695.00 ₹ 2,780.00
Lamp 3 ₹ 39.95 ₹ 119.85
Mixed Referencing
Width
Length 1 2 3 4
1
1.5
2
1.5
3
Calculate Total
5
SUM
Horizontal
100 200 300 600 =SUM(C4:E4)
Vertical
100
200
300
600 =SUM(C7:C9)
Single Cells
100 300 600 =SUM(C13,D14,E13)
200
Multiple Ranges
100 400
200 500
3000 600
4800 =SUM(C17:C19,E17:E19)
Functions
100 400
200 500
300 600
900 =SUM(MAX(E23:E25),MAX(C23:C25))
What Does It Do ?
This function creates a total from a list of numbers.
It can be used either horizontally or vertically.
The numbers can be in single cells, ranges are from other functions.
Syntax
=SUM(Range1,Range2,Range3... through to Range30).
Formatting
No special formatting is needed.
Note
Many people use the =SUM() function incorrectly.
This example shows how the SUM has been combined with plus + symbols.
The formula is actually doing more work than needed.
It should have been entered as either =C48+C49+C50 or =SUM(C48:C50).
100
200
300
600 =SUM(C48+C49+C50) Wrong!
=SUM(C48:C50) Correct
=C48+C49+C50 Correct
IF
Syntax
=IF(Condition,ActionIfTrue,ActionIfFalse)
The Condition is usually a test of two cells, such as A1=A2.
The ActionIfTrue and ActionIfFalse can be numbers, text or calculations.
Formatting
No special formatting is required.
Example 1
The following table shows the Sales figures and Targets for sales reps.
Each has their own target which they must reach.
The =IF() function is used to compare the Sales with the Target.
If the Sales are greater than or equal to the Target the result of Achieved is shown.
If the Sales do not reach the target the result of Not Achieved is shown.
Note that the text used in the =IF() function needs to be placed in double quotes "Achieved".
Example 2
The following table is similar to that in Example 1.
This time the Commission to be paid to the sales rep is calculated.
If the Sales are greater than or equal to the Target, the Commission is 10% of Sales.
If the Sales do not reach Target, there is no Commission
Nested IF'S
As Single IF cannot achive the above.You will have to use a IF within an IF.
Main IF
Example 3
This example uses the =AND() within the =IF() function.
Lets say there is a 10% discount on certain product categories
The discount is only given on products which are on Special Offer, when the Order Value
is 1000 or above.
The =AND() function is used with the =IF() to check that the product is on offer and that
the value of the order is above £1000.
Special Order
Product Offer Value Discount Total
Windows Yes 950 0 950
MAC No 2000 0 2000
UNIX Yes 500 0 500
Linux Yes 3000 300 2700
=IF(AND(C61="Yes",D61>=1000),D61*10%,0)
ot Achieved")
ot Achieved")
ot Achieved")
n the formulas