It PDF
It PDF
1. Select Insert.
2. Select Header or Footer.
3. Choose one of the built-in templates displayed.
Your selected
template is added to your document.
4. Place your cursor in the header or footer, and
add your desired
text.
5. When you’re done editing, select Close
Header and Footer.
error. Make sure the word is spelled To use the grammar check feature:
correctly before choosing this option.
1. Right-click the underlined
word or phrase. A menu
FOR GRAMMAR “ERRORS” will appear.
Ignore Once: This will skip the “error” 2. Click the correct
without changing it. phrase from the listed
Ignore Rule: This will skip this “error”; and suggestions.
all other instances that relate to this grammar 3. The corrected phrase will
rule. appear in the document.
Next Sentence: This skips the sentence
without changing it and leaves it marked as
an error. This means it will still show up if
you do another spelling and grammar check
later on.
COLOR INDICATIONS
• Red line—indicates a misspelled
word.
• Green line—indicates a grammatical
error.
• Blue line—indicates a contextual
spelling error. This feature is turned
off by default.
o Contextual spelling error—
occurs when the wrong word
is used but the word is spelled
correctly.
total columns. Every column has its own workbook contains one or more
alphabet for identity, from A to XFD. You worksheets.
can select a column clicking on its header. 14. Worksheet: A worksheet is made up of
4. Rows: A row is a horizontal set of cells. A individual cells which can contain a value,
single worksheet contains 1048576 total a formula, or text. It also has an invisible
rows. Every row has its own number for draw layer, which holds charts, images,
identity, starting from 1 to 1048576. You and diagrams.
can select a row clicking on the row 15. Worksheet Tab: This tab shows all the
number marked on the left side of the worksheets which are present in the
window. workbook. By default you will see, three
5. Fill Handle: It’s a small dot present on the worksheets in your new workbook with
lower right corner of the active cell. It the name of Sheet1, Sheet2, Sheet3
helps you to fill numeric values, text series, respectively.
insert ranges, insert serial numbers, etc.
6. Address Bar: It shows the address of the
active cell. If you have selected more than *** END OF MODULE 8 & 9 ***
one cell, then it will show the address of
the first cell in the range.
7. Formula Bar: The formula bar is an input
bar, below the ribbon. It shows the content
of the active cell and you can also use it to
enter a formula in a cell.
8. Title Bar: The title bar will show the
name of your workbook, followed by the
application name (“Microsoft Excel”).
9. File Menu: The file menu is a simple
menu like all other applications. It
contains options like (Save, Save As,
Open, New, Print, Excel Options, Share,
etc).
10. Quick Access Toolbar: A toolbar to
quickly access the options which you
frequently use. You can add your favorite
options by adding new options to quick
access toolbar.
11. Ribbon Tab: Starting from the Microsoft
Excel 2007, all the options menus are
replaced with the ribbons. Ribbon tabs are
the bunch of specific option group which
further contains the option.
12. Status Bar: It is a thin bar at the bottom
of the Excel window. It will give you an
instant help once you start working in
Excel.
13. Workbook: A workbook is a separate file
just like every other application has. Each
MIDTERMS – IT APPLICATIONS
• =IF(C2=”Yes”,1,2)
SUMIFS FUNCTION
• SUMIFS - Excel SUMIFS function Using SUMIFS() with Date & time values
is used to calculate the sum of values When you have a column of dates, you can
that meet any criteria. apply special operators like >, <, =, <> to
specify a date range.
• Using SUMIFS you can find the sum For example, to count total sales between
of values in your data that meet March 2018 and May 2018, we can use
multiple conditions. =SUMIFS(acme[Sales], acme[Sales
• So, to get the sum of all the Blow Date],">=1-Mar-2018", acme[Sales Date],
Torches sold in North, we just write, "<=31-May-2018")
• =SUMIFS(D3:D16, B3:B16,"Blow
Torch",C3:C16,"North") COUNTIF FUNCTION
• Similarly to find the podgun sales in
East, just write, Use COUNTIF, one of the statistical
functions, to count the number of cells that
meet a criterion; for example, to count the
number of times a particular city appears in a
customer list.
In its simplest form, COUNTIF says:
• =COUNTIF(Where do you want to look?,
What do you want to look for?)
MIDTERMS – IT APPLICATIONS
For example:
• =COUNTIF(A2:A5,"London")
• =COUNTIF(A2:A5,A4)
=VLOOKUP( this value, your data table, 3. INDEX - =INDEX() returns the value of
column number, optional is your table a cell in a table based on the column and
sorted?) row number.
4. MATCH - =MATCH() returns the
position of a cell in a row or column.
5. SUMIFS Function - is a worksheet
function that adds all numbers in
a range of cells based on one criteria.
6. SUMPRODUCTS Function - is
a function in Excel that multiplies range
of cells or arrays and returns the sum of
products.
7. VLOOKUP Function - performs a
vertical lookup by searching for a value
in the first column of a table and
returning the value in the same row in
the index_number position.
8. Workbook: A workbook is a separate
INDEX FUNCTION file just like every other application has.
INDEX function is your way of telling Each workbook contains one or more
excel to fetch a value from large range worksheets.
of values. Since MATCH() function can tell 9. Worksheet: A worksheet is made up of
us where the data is found, you can then individual cells which can contain a
use INDEX() function to extract value, a formula, or text. It also has an
corresponding data from another column. invisible draw layer, which holds charts,
In this case, we can use MATCH() to find images, and diagrams.
out which row has net sales 1,799 and 10. Worksheet Tab: This tab shows all the
INDEX() to return the name of the person. worksheets which are present in the
Like this: workbook. By default you will see, three
Find the position of 1,799 in sales: worksheets in your new workbook with
=MATCH(1799, $C$2:$C$14, 0) the name of Sheet1, Sheet2, Sheet3
The answer will be 8. respectively.
To find the 8th person in names list, we can
use INDEX() function like this: *** END OF MODULE 10 ***
=INDEX($A$2:$A$14, 8)
The answer will be Jagjit.
TERMINOLOGIES
1. COUNTIF Function - is an
Excel function to count cells in a range
that meet a single condition.
2. IF Function - to return one value if a
condition is true and another
value if it's false