MS - Excel
MS - Excel
1
2/18/2023
2
2/18/2023
Select Cells
Click on a cell to select it.
Each cell has its own name, or cell address, based
on its column and row. In this example, the selected
cell intersects column B and row 3, so the cell
address is B3.
To select Multiple Cells: click and drag your
mouse until all of the adjoining cells you want are
highlighted.
3
2/18/2023
Cell Contents
Each cell can contain its own text, formatting, comments, formulas, and functions.
Text: cells can contain letters, numbers, and dates.
Formatting attributes: cells can contain formatting attributes that change the
way letters, numbers, and dates are displayed. For example, dates can be
formatted as MM/DD/YYYY or Month/D/YYYY.
Formulas and Functions: cells can contain formulas and functions that
calculate cell values. For example, SUM (cell 1, cell 2, …) is a formula that can
add the values in multiple cells.
To format numbers and dates: Home Number Number Format
Insert Content
To Insert Content: Click on a cell into the
selected cell using your keyboard. Then, the
content appears in the cell and in the formula
bar. You also can enter or edit cell content
from formula bar.
To Use Fill Handle to Fill Cells: select the
cell or cells containing the content you want
to use. You can fill cell content either
vertically or horizontally.
4
2/18/2023
Merge Cells
To merge cells using the Merge & Center command: Select the cells you want to
merge together. Then, select the Merge & Center command on the Home tab, in the
Alignment group.
If you change your mind, re-click the Merge & Center command to unmerge the
cells.
5
2/18/2023
Sort
To sort in alphabetical order: Select a cell in the column you want to sort by.
Next, select the Data tab, then locate the Sort and Filter group. To Sort A to Z click
on the ascending command , or click on the descending command to Sort Z
to A.
Sorting options can also be found on the Home tab, condensed into the Sort & Filter
command. You can also Sort & Filter command.
6
2/18/2023
Chart
A chart is a tool you can use in Excel to communicate your data graphically. Charts
allow your audience to see the meaning behind the numbers, and they make
showing comparisons and trends a lot easier.
Types of charts:
Column Charts
Line Charts
Pie Charts
Bar Charts
Chart Elements
The title is a text box you can place anywhere on the chart.
The plot is the area on the chart that displays the data in the chart type you choose.
Data point: A single numeric value represented on the chart (for example, a single
bar or point)
Axis: A line on which data is plotted
7
2/18/2023
Create Chart
To create a chart: First, select the cells you want to chart, including the column
titles and row labels. These cells will be the source data for the chart. Next, click the
Insert tab. In the Charts group, select the desired chart category (Column, for
example.) Then, select the desired chart type from the drop-down menu (Clustered
Column, for example.) The chart will appear in the worksheet.
Example of Chart
8
2/18/2023
Conditional Formatting
Conditional formatting allows you to automatically apply formatting, such as colors,
icons, and data bars to one or more cells based on the cell value.
For example, a conditional formatting rule might be: If the value is less than $2000,
color the cell red.
9
2/18/2023
10
2/18/2023
Mathematical Operators
Excel uses standard operators for formulas, such as a plus sign for addition (+), a
minus sign for subtraction (-), an asterisk for multiplication (*), a forward slash for
division (/), and a caret (^) for exponents.
All formulas in Excel must begin with an equals sign (=). This is because the cell
contains, or is equal to, the formula and the value it calculates.
11
2/18/2023
Creating Functions
There are a variety of functions available in Excel. Here are some of the most
common functions you will use:
SUM: This function adds all of the values of the cells in the argument.
AVERAGE: This function determines the average of the values included in the
argument.
COUNT: It counts the number of cells with numerical data in the argument.
COUNTA: It counts the number of cells with text data in the argument.
MAX: This function determines the highest cell value included in the argument.
MIN: This function determines the lowest cell value included in the argument.
12
2/18/2023
SUMIF Function
SUMIF function is used to sum the values in a range that meet criteria.
For example, suppose that in a column that contains numbers, you want to sum
only the values that are larger than 20.
You can use the following formula: =SUMIF(B2:B25, ">20")
If you want, you can apply the criteria to one range and sum the corresponding
values in a different range.
For example, the formula =SUMIF(B2:B5, "Computer", C2:C5) sums
only the values in the range C2:C5, where the corresponding cells in the range
B2:B5 equal “Computer"
13
2/18/2023
COUNTIF Function
Use COUNTIF, one of the statistical functions, to count the number of cells that
meet a criterion.
Example #1, to count the number of times a particular city appears in a
customer list.
=COUNTIF(A2:A5, “Baghdad")
Example #2, to count number of students that are passed, while you know the
grades are written from B2 to B30:
=COUNTIF(B2:B30, “>=50")
14