10
Belonie Secondary Basic Terms in Excel 1 Data Analysis Microsoft Excel What is a data model? Spreadsheet model is used to explore different possible answers. These models are often financial, mathematical or scientific. It lets you change data in the spreadsheet to see what will happen to the results. Each cell in a spreadsheet can hold one of three things. It can contain: _ a number _ text, which is called a label _ a formula, which always starts with an = sign. Column Headings Row Headings Cell Address C4 Active Cell E9

Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

  • Upload
    others

  • View
    15

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

1

Data Analysis – Microsoft Excel

What is a data model?

Spreadsheet model is used to explore different possible answers.

These models are often financial, mathematical or scientific. It lets

you change data in the spreadsheet to see what will happen to the

results.

Each cell in a spreadsheet can hold one of three things. It can contain:

_ a number

_ text, which is called a label

_ a formula, which always starts with an = sign.

Column Headings

Row

Headings

Cell Address

C4

Active Cell

E9

C4

Page 2: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

2

Basic Terms in Excel

There are two basic ways to perform calculations in Excel: Formulas and

Functions.

1. Formulas

In Excel, a formula is an expression that operates on values in a range of cells

or a cell. For example, =A1+A2+A3, which finds the sum of the range of values

from cell A1 to cell A3.

2. Functions

Functions are predefined formulas in Excel. They eliminate laborious manual

entry of formulas while giving them human-friendly names. For example:

=SUM(A1:A3). The function sums all the values from A1 to A3.

1. SUM

The SUM function is the first must-know formula in Excel. It usually

aggregates values from a selection of columns or rows from your selected

range.

=SUM(number1, [number2], …)

Example:

=SUM(B2:G2) – A simple selection that sums the values of a row.

=SUM(A2:A8) – A simple selection that sums the values of a column.

=SUM(A2:A7, A9, A12:A15) – A sophisticated collection that sums values

from range A2 to A7, skips A8, adds A9, jumps A10 and A11, then finally

adds from A12 to A15.

=SUM(A2:A8)/20 – Shows you can also turn your function into a formula.

Page 3: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

3

2 . AVERAGE

The AVERAGE function should remind you of simple averages of data such as

the average number of shareholders in a given shareholding pool.

=AVERAGE(number1, [number2], …)

Example:

=AVERAGE(B2:B11)

3. COUNT

The COUNT function counts all cells in a given range that contain only

numeric values.

=COUNT(value1, [value2], …)

Example:

COUNT(A:A) – Counts all values that are numerical in A column. However, you

must adjust the range inside the formula to count rows.

COUNT(A1:C1) – Now it can count rows.

Page 4: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

4

4. MAX & MIN

The MAX and MIN functions help in finding the maximum number and the

minimum number in a range of values.

=MIN(number1, [number2], …)

Example:

=MIN(B2:C11) – Finds the minimum number between column B from B2 and

column C from C2 to row 11 in both columns B and C.

=MAX(number1, [number2], …)

Example:

=MAX(B2:C11) – Similarly, it finds the maximum number between column B

from B2 and column C from C2 to row 11 in both columns B and C.

5. INT

In mathematics, an integer is the word used to describe a whole number (with

no decimals or fractions). Within Excel, the INT function takes the whole

number part of a number and ignores all digits after the decimal point.

Example:

=INT(B10)

Page 5: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

5

6. ROUND

Enter the formula =ROUND(B10,0). This uses the ROUND function which

takes the content of cell B10 and rounds the number to 0 decimal places: if

the next digit is five or more the number will be increased by one.

7. IF

An IF function contains a pair of brackets and within the brackets three parts,

each separated by a comma. IF Statement is Decision making statements.

IF statement is defined as a function which “checks whether a condition is met,

returns one value if True and another value if False”.

Page 6: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

6

Syntax of Excel IF Statement:

The syntax of If Function in Excel is as follows:

=IF (Logic_Test, Value_if_True, Value_if_False)

Here, ‘Logic_Test’ refers to the expression that is to be evaluated.

‘Value_if_True’ is the output of IF Statement if the ‘Logic_Test’ is TRUE.

‘Value_if_False’ is the output of IF Statement if the ‘Logic_Test’ is FALSE.

Examples of Excel IF Statement:

Now, let’s move to the practical examples and use of IF function.

In the below Example:

Page 7: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

7

Header / Footer

Header and Footer. A header is the information that appears at the top of each

printed page and a footer is the information that appears at the bottom of each

printed page. By default, new workbooks do not have headers or footers.

A header is the top margin of each page, and footer is the bottom margin of each

page. Headers and footers are useful for including material that you want to appear

on every page of a document such as your name, the title of the document, or page

numbers.

To insert a header or footer:

Select the Insert tab.

Click either the Header or Footer command. ...

From the drop-down menu, select Blank to insert a blank header or footer, or

choose one of the built-in options. ...

The Design tab will appear on the Ribbon, and the header or footer will appear

in the document.

Add page numbers

On the Insert tab, click Header & Footer. Excel automatically changes to Page Layout

view. On Header & Footer tab, click either the Header or Footer, and then select

the page number format you want. Header page numbers appear at the top of the

printed page, and footer page numbers appear at the bottom.

Page 8: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

8

Page 9: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

9

Page 10: Data Analysis Microsoft Excel Analysis1.pdf · Examples of Excel IF Statement: Now, let’s move to the practical examples and use of IF function. In the below Example: Belonie Secondary

Belonie Secondary Basic Terms in Excel

10