SOFAPP5
SOFAPP5
Objectives:
a.) Indicate the names and functions of the Excel interface
components.
b.) Construct formulas, including the use of built-in functions,
and relative and absolute references.
c.) Create a spreadsheet to tabulate and record numeric values
Page 1
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Page 2
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
You can choose the predefined header and footer or create your custom ones.
&[Page] − Displays the page number.
&[Pages] − Displays the total number of pages to be printed.
&[Date] − Displays the current date.
Page 3
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
When a header or footer is selected in Page Layout view, the Header & Footer » Design »
Options group contains controls that let you specify other options −
Different First Page − Check this to specify a different header or footer for the first printed
page.
Different Odd & Even Pages − Check this to specify a different header or footer for odd
and even pages.
Scale with Document − If checked, the font size in the header and footer will be sized.
Accordingly if the document is scaled when printed. This option is enabled, by default.
Align with Page Margins − If checked, the left header and footer will be aligned with the
left margin, and the right header and footer will be aligned with the right margin. This
option is enabled, by default.
Page 4
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Insert Horizontal Page Break − For example, if you want row 14 to be the first row of a new page,
select cell A14. Then choose Page Layout » Page Setup Group » Breaks » Insert Page Break.
Insert vertical Page break − In this case, make sure to place the pointer in row 1. Choose Page
Layout » Page Setup » Breaks » Insert Page Break to create the page break.
Page 5
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Page 6
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Select the First row or First Column or the row Below, which you want to freeze, or
Column right to area, which you want to freeze.
Page 7
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
If you have selected Freeze top row you can see the first row appears at the top, after
scrolling also. See the below screen-shot.
Unfreeze Panes
To unfreeze Panes, choose View Tab » Unfreeze Panes.
Page 8
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Highlight Cells Rules − It opens a continuation menu with various options for defining the
formatting rules that highlight the cells in the cell selection that contain certain values,
text, or dates, or that have values greater or less than a particular value, or that fall within
a certain ranges of values.
Suppose you want to find cell with Amount 0 and Mark them as red.Choose Range of cell » Home
Tab » Conditional Formatting DropDown » Highlight Cell Rules » Equal To.
After Clicking ok, the cells with value zero are marked as red.
Page 9
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Top/Bottom Rules − It opens a continuation menu with various options for defining the
formatting rules that highlight the top and bottom values, percentages, and above and
below average values in the cell selection.
Suppose you want to highlight the top 10% rows you can do this with these Top/Bottom rules.
Page 10
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Data Bars − It opens a palette with different color data bars that you can apply to the cell
selection to indicate their values relative to each other by clicking the data bar thumbnail.
With this conditional Formatting data Bars will appear in each cell.
Color Scales − It opens a palette with different three- and two-colored scales that you can
apply to the cell selection to indicate their values relative to each other by clicking the
color scale thumbnail.
See the below screenshot with Color Scales, conditional formatting applied.
Page 11
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Icon Sets − It opens a palette with different sets of icons that you can apply to the cell
selection to indicate their values relative to each other by clicking the icon set.
See the below screenshot with Icon Sets conditional formatting applied.
New Rule − It opens the New Formatting Rule dialog box, where you define a custom
conditional formatting rule to apply to the cell selection.
Clear Rules − It opens a continuation menu, where you can remove the conditional
formatting rules for the cell selection by clicking the Selected Cells option, for the entire
worksheet by clicking the Entire Sheet option, or for just the current data table by clicking
the This Table option.
Manage Rules − It opens the Conditional Formatting Rules Manager dialog box, where
you edit and delete particular rules as well as adjust their rule precedence by moving
them up or down in the Rules list box.
Page 12
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Page 13
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Page 14
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
By a right click on the status bar you can customize it. You can add more functions in the
status bar. Select the function from the menu which you want to add in the status bar. See the
image shown below, status bar is customized. It is also showing maximum and minimum of the
numbers.
Page 15
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
Select the cell in which you want to create the "IF function"
Type the code in the cell: =if(
Type the condition with comma: B4>70,
Type what you want to show if condition is fulfilled. If you want to display text then
write it within quotation marks: "Unsafe"
Type a comma: ,
Type what you want to show if the condition is not fulfilled within quotation
marks: "Safe"
Then close the bracket and press the Enter key.
The IF function created above will look like this: =if(B4>70,"Unsafe","Safe")
So the IF function says if the speed or value in the cell B4 is more than 70 then display
Unsafe and if it is less than 70 then display Safe.
Page 16
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
After pressing the Enter key you will get the result for cell B4. Drag the fill handle
downward till cell C9 to get status for other speeds of column B.
Excel If Function with Calculations
"IF function" can be used in complex calculations. See the example:
If a sales executive sells more than 5 items, the company will pay incentive 40 rupees
per item sold and if the sales executive sells less than 5 items, the company will pay 20 rupees
per item sold.
See how the "IF function" is used with the calculation:
Select the cell in which you want to create the "IF function"
Type the code in the cell: =if(
Type the condition with comma: C4>5,
Type what you want to show if condition is fulfilled: 40*C4
Type a comma: ,
Type what you want to show if the condition is not fulfilled: 20*C4
Then close the bracket and press the Enter key.
The IF function will look like this: =if(C4>5,40*C4,20*C4)
Page 17
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
So the IF function says if value in cell C4 is greater than 5 then multiply it with 40. If it is
less than 5 then multiply it with 20.
The IF function can be modified to perform different calculations:
Suppose in the above example the company wants to pay rupees 50 along with incentive to
those employees who have completed probation period of 5 months or their job duration is
more than 5 months.
In this case, we can insert one more column in the worksheet for job months and modify the IF
function accordingly to get the results.
The modified IF function is: =if(C4>5,50+E4,E4)
It says if the value in cell C4 is greater than 5 then add 50 to E4 which is incentive of Peter. And
if it is less than 5 then keep the incentive, the value of cell E4 same. See the image shown
below:
For more knowledge about Microsoft Excel Intermediate Guide , please check the
link provided; https://www.youtube.com/watch?v=lxq_46nY43g
Page 18
MODULE OFFICE APPLICATION SOFTWARE - SOFAPP
REFERENCES
https://www.javatpoint.com/excel-tutorial
Page 19