Ms Excel 2013: G.D. de Leon 1
Ms Excel 2013: G.D. de Leon 1
De Leon 1
MS EXCEL
2013
G.D. De Leon 2
Microsoft excel Is simply described as electronic software that combines the capability of three analytical
tools.
DATA ENTRY
Types of excel data
1. Constant values – data that will not change unless you change it or type another in place of it.
Text,Numbers, Dates and Time
2. Formula Entries – are entries that calculates with numbers or cell address.
DATA FLOWS OVER TO THE NEXT CELL OR ONLY PART OF THE ENTRY SHOWN ON SCREEN
G.D. De Leon 3
This happens when the data you are typing is too wide to fit the width of the current cell.
If the cell on the right of the active cell is empty the whole data will flow over to the next
cell(s). But if the cell on the right of the active cell is not empty, only part of the current entry
will be displayed.
DATA EDITING
Select the cell you want to edit then press F2 then Edit the data then press enter or Double Click the cells
you want to edit then Edit the data then press enter.
Note: To set specific width of a column. Select the column or columns that you want to change. On
the Home tab, in the Cells group, click Format. Under Cell Size, click Column Width.
Note: To set specific height of a row On the Home tab, in the Cells group,
click Format. Under Cell Size, click Row Height.
3. In the Format Cells dialog box, in the Category list, click Currency or Accounting.
G.D. De Leon 4
4. In the Symbol box, click the currency symbol that you want.
NOTE If you want to display a monetary value without a currency symbol, you can click
None.
5. In the Decimal places box, enter the number of decimal places that you want for the number.
For example, to display $1,450 instead of $1,449.99 in the cell, enter 0 in the Decimal
places box.
6. To close the Format Cells dialog box, click OK.
If Excel displays ##### in a cell after you apply currency formatting to it, the cell probably isn't wide
enough to display the data.
3.
4. In the Format Cells dialog box, in the Category list, click Date.
5. Click the date format that you want.
1. Select the cell or range of cells that contains the numbers for which you want to change
the decimal places.
2. On the Home tab, in the Number group, do one of the following:
Click Increase Decimal to display more digits after the decimal point.
Click Decrease Decimal to display fewer digits after the decimal point.
1. Select the cells you want to reformat to the default number format.
2. On the Home tab, click General. Then General No specific format.
Merging Cells
1. Select Cells to merge.
2. On the Alignment Group.
3. Select of any of these.
G.D. De Leon 5
1. With the mouse pointer, right click on the column header where you want the new column added.
2. Choose Insert from the menu.
3. The new column will be inserted to the left of the selected column.
Note to add multiple columns select the more than one header column right click then choose insert.
1. With the mouse pointer, right click on the row header below where you want the new row added.
2. Choose Insert from the menu.
3. The new row will be inserted above the row you selected.
Note to add multiple rows select the more than one header row right click then choose insert.
Delete cells, rows, or columns
Right-click a selection of cells, rows, or columns you want to delete then click Delete on the shortcut
menu, and then click the option that you want.
Rename a worksheet
1. On the Sheet tab bar, right-click the sheet tab that you want to rename, and then click Rename.
2. Select the current name, and then type the new name.
Delete a worksheet
Right-click the sheet tab of a worksheet or a sheet tab of any selected worksheets that you want to
delete, and then click Delete.
Print a Range
There may be times when you only want to print a portion of a worksheet. This is easily done through the
Print Range function. To print a range:
Select the area to be printed
Click the Print Area button on the Page Layout tab
Click Select Print Area
Press Ctrl P: Print backstage view will display select
other setting you want then click print
G.D. De Leon 6
Conditional Formatting
Quick formatting
1. Select a range of cells, or make sure that the active cell is in a table or PivotTable report.
2. On the Home tab, in the Style group, click the arrow next to Conditional Formatting, and
then click Highlight Cells Rules.
3. Select the command that you want, such as Between, Equal To Text that Contains, or A
Date Occurring. Or more rules for advanced rules
4. Enter the values that you want to use, and then select a format. Or customized your format.
Te edit the conditional formatting select mange rules.
Worksheet
1. On the Home tab, in the Styles group, click the arrow next to Conditional
Formatting, and then click Clear Rules.
VALIDATION RULES
5. To specify how you want to handle blank (null) values, select or clear the Ignore blank check
box.
Freeze Panes
G.D. De Leon 8
EXCEL FORMULA
Arithmetic Formula
+ addition
- subtraction
/ division
* multiplication
Logical Formula
Formula
=sum(A2:A8) Add the numbers in range A2 to A8
=sum(A2,A4) Add the numbers in A2 and A4
=max(A2:A8) get the maximum number in range A2 to A8
=min(A2:A8) get the minimum number in range A2 to A8
=average(A2:A8) get the average number in range A2 to A8
=count(A2:A8) count the number in range A2 to A8
=countif(A2:A8,”>10”) count the value of >10 in range A2 to A8
1. Select cells
2. Move the pointer to the right bottom part of the selected cells until the pointer changes to a
four pointed cross.
3. Drag the to the end of the range to be filled up;.
4. Release the mouse button.
G.D. De Leon 9
VLOOKUP FUNCTION
Searches for a value in the leftmost column of a table, and then returns a value in the same row
from a column you specify in the table.
Example:
=vlookup(A2, range1,2)
Range1
IF FUNCTION
Returns one value if a condition you specify evaluates to TRUE and another value if it evaluates
to FALSE.
Syntax
=if ( logical test, value if true, value if false)
Logical_test is any value or expression that can be evaluated to TRUE or FALSE. For example,
A10 >=75 is a logical expression;
Value_if_true is the value that is returned if logical_test is TRUE.
Value_if_false is the value that is returned if logical_test is FALSE
=IF(A2<=100,"Within budget","Over budget") If the number above is less than or equal to 100,
then the formula displays "Within budget".
Otherwise, the function displays "Over budget"
(Within budget)
Example
Problem:
Grade is >= 75 print passed
Grade is < 75 print failed
Example
Problem:
Sale is < 50 the discount is 50%
Sale is >50 the discount is 30%
Nested IF
Syntax
=if ( logical test1, value if true1, if( logical test2, value if true2, if( logical test3, value if true3,all false)))
Example
In the example, the second IF statement is also the value_if_false argument to the first IF statement.
Similarly, the third IF statement is the value_if_false argument to the second IF statement. For example, if
the first logical_test (Average>89) is TRUE, "A" is returned. If the first logical_test is FALSE, the second
IF statement is evaluated, and so on.
The letter grades are assigned to numbers using the following key.
From 80 to 89 B 90 =IF(A2>89,1.25,IF(A2>79,1.5,IF(A2>69,2.25,IF(A2>59,
2.50,2.75))))
From 70 to 79 C 78
G.D. De Leon 11
From 60 to 69 D 64
Less than 60 F
Create a chart
1. On the worksheet, arrange the data that you want to plot in a chart.
2. Select the cells that contain the data that you want to use for the chart.
3. On the Insert tab, in the Charts group, do one of the following:
4. Click the chart type, and then click a chart subtype that you want to use.
To see all available chart types, click a chart type, and then click All Chart Types to
display the Insert Chart dialog box, click the arrows to scroll through all available
chart types and chart subtypes, and then click the the ones that you want to use.
Editing a chart
To edit chart: 1. select the existing chart. 2. Select Chart tools then lay out (ribbon tab).
Instructions
3) Center the spreadsheet heading "Weekly Income Schedule" across the spreadsheet.
5) Create formula's to display a total for each item in the Lunch Bar.
9) Apply all borders and shading (color) shown in the sample below, feel free to
experiment with your own color schemes.