Module-1-Introduction to Spread Sheet
Module-1-Introduction to Spread Sheet
Components of Spreadsheets
The basic components of spreadsheets are:
1. Title Bar: The title bar displays the name of the spreadsheet and application.
2. Toolbar: It displays all the options or commands available in Excel for use.
3. Name Box: It displays the address of the current or active cell.
6. Title Bar: The title bar displays the name of the spreadsheet and application.
7. Toolbar: It displays all the options or commands available in Excel for use.
8. Name Box: It displays the address of the current or active cell.
9. Formula Bar: It is used to display the data entered by us in the active cell. Also, this
bar is used to apply formulas to the data of the spreadsheet.
10. Column Headings: Every Excel spreadsheet contains 256 columns and each column
present in the spreadsheet is named by letters or a combination of letters.
11. Row Headings: Every Excel spreadsheet contains 65,536 rows and each row present
in the spreadsheet is named by a number.
12. Cell: In a spreadsheet, everything like a numeric value, functions, expressions, etc., is
recorded in the cell. Or we can say that an intersection of rows and columns is known as a
cell. Every cell has its own name or address according to its column and rows and when the
cursor is present on the first cell then that cell is known as an active cell.
13. Cell referring: A cell reference, also known as a cell address, is a way for describing
a cell on a worksheet that combines a column letter and a row number. We can refer to any
cell on the worksheet using cell references (in excel formulae). As shown in the above image
Ms-Excel shortcuts
1. Ctrl+N: To open a new workbook.
2. Ctrl+O: To open a saved workbook.
3. Ctrl+S: To save a workbook.
Entering Data
1. Basic Entry:
o Click a cell and start typing to input text, numbers, or formulas.
o Press Enter to confirm and move to the next cell below, or Tab to move to the
right.
2. Copying and Pasting:
o Select a cell or range of cells.
o Use Ctrl + C to copy, Ctrl + V to paste (Windows) or Command + C/V (Mac).
o For dragging data: Hover over the bottom-right corner of a cell, then drag to fill
adjacent cells.
3. Editing Data:
o Double-click the cell or press F2 (Windows) / Ctrl + U (Mac).
o Use the formula bar to view or edit cell contents.
4. Deleting Data:
o Select the cell and press Delete or Backspace.
Sorting Data
Sorting rearranges rows in ascending or descending order based on the selected column(s).
o Select a column or click a cell within the column to sort.
o Go to Data > Sort or use the toolbar.
o Choose:
▪ Ascending (A-Z or smallest to largest).
▪ Descending (Z-A or largest to smallest).
Arithmetic Operators
Spreadsheets support basic arithmetic operations:
Operator Operation Example Result
+ Addition =10+5 15
- Subtraction =10-5 5
* Multiplication =10*5 50
/ Division =10/5 2
^ =10^5 100
Exponentiation
TEXTJOIN
• Combines text from multiple cells with a delimiter.
• Syntax:
o =TEXTJOIN(delimiter, ignore_empty, text1, text2, ...)
• Example:
o A1 = "Apple", B1 = "Banana", C1 = ""
o =TEXTJOIN(", ", TRUE, A1:C1) → "Apple, Banana"
LEFT / RIGHT
• Extracts a specific number of characters from the beginning or end of a text string.
• Syntax:
o =LEFT(text, num_chars)
o =RIGHT(text, num_chars)
• Example:
o A1 = "Spreadsheet"
o =LEFT(A1, 5) → "Spread"
o =RIGHT(A1, 5) → "sheet"