1.1 Introduction to Spreadsheets
People earlier maintained expenses in a diary — school fees, grocery, gas, electricity, festivals, etc. With a spreadsheet, the same data can be stored, updated and calculated automatically.
🔹 Example: A Grocery Shop
A shopkeeper keeps track of items (total quantity, quantity sold, quantity left, cost price per kg, selling price per kg). A spreadsheet stores all this and helps calculate profit/loss easily.
| Item | Total Qty (kg) | Sold (kg) | Left (kg) | Cost ₹/kg | Selling ₹/kg |
|---|---|---|---|---|---|
| Wheat atta | 250 | 115 | 135 | 28 | 31 |
| Rice | 160 | 57 | 103 | 46 | 50 |
| Arhar daal | 70 | 45 | 25 | 60 | 68 |
| Sugar | 200 | 145 | 55 | 40 | 45 |
1.2 Spreadsheet Applications — Popular Software
- Microsoft Excel — most widely used commercial spreadsheet (part of MS Office).
- LibreOffice Calc — free and open-source; used throughout this chapter.
- Google Sheets — cloud-based, works in a browser, supports real-time collaboration.
Most features are the same across these applications — if you learn one, you can use any other.
1.3 Creating a New Worksheet — Starting LibreOffice Calc
- Ensure LibreOffice is installed on your computer.
- Type LibreOffice Calc in the Windows search bar.
- Select LibreOffice Calc from the search results — a blank sheet opens.
- You can start typing and entering data immediately, but first understand the components of a spreadsheet.
1.4 Components of a Spreadsheet
| Component | Meaning |
|---|---|
| Row | Arrangement of cells in a horizontal (sleeping) manner — numbered 1, 2, 3, 4, … (e.g., all maths marks on row 3). |
| Column | Arrangement of cells in a vertical (standing) manner — named A, B, C, D, … (e.g., Rajvir's marks in column B). |
| Cell | A rectangle where a row and column meet. You can enter text, numbers, date or formula. The selected cell is highlighted (e.g., B3 = column B, row 3). |
| Formula Bar | The strip where whatever you type in a cell also appears. You can enter or edit data and formulas directly here. |
| Name Box | Shows the location of the selected cell (e.g., A1). |
| Worksheet | A collection of cells in the form of a grid. A new spreadsheet starts with a blank worksheet named "Sheet1". |
| Workbook | A spreadsheet that has one or more worksheets. |
1.5 Opening the Workbook and Entering Text
⌨️ 1. Steps to Enter Data
- Click on the cell where you want to enter data (e.g., A1).
- Type text or number. The same appears in the Formula Bar.
- Press Enter to commit — the cursor moves to the next cell (A2).
- By default, text is left-aligned, numbers are right-aligned.
- To enter a formula, start the cell with "=" (e.g., =73+89+78).
🗂️ 2. Types of Data in a Spreadsheet
- Text — names, labels, headings.
- Numbers — quantities, dates, amounts.
- Formulas — calculations starting with "=".
- Modern spreadsheets also accept pictures, audio, video and shapes.
✏️ 3. Editing Data in a Cell (3 Methods)
- Method 1: Double-click the cell → type additional text in the cell or Formula Bar → Enter.
- Method 2: Click the cell → correct the text in the Formula Bar → Enter.
- Method 3: Click the cell → type the new text (this completely replaces the old text) → Enter.
🗑️ 4. Deleting Data in a Cell
- Click on the cell.
- Press the Delete key on the keyboard.
- The text entry is removed — the cell becomes blank.
1.6 Resizing Fonts and Styles — Formatting Text
Spreadsheets offer many options to make content neat and readable — this is called formatting.
| Formatting | How to Apply |
|---|---|
| Change text style (font) | Use the Font drop-down on the Tool Bar. |
| Change font size | Use the Font-size drop-down on the Tool Bar. |
| Align text in a cell | Left, Right or Center — click the corresponding icon on the Tool Bar. |
| Bold | Ctrl + B (or B icon) |
| Underline | Ctrl + U (or U icon) |
| Italic | Ctrl + I (or I icon) |
1.7 Copying and Moving Data (and Formulas)
📋 1. Selecting Multiple Cells
A single selected cell is the active cell. When several cells are selected together it is called a cell range. Ways to select:
- To select an entire row — click the row heading.
- To select an entire column — click the column heading.
- To select the entire worksheet — click the grey rectangle on the upper-left corner.
- To select a range of cells — click the starting cell, hold the left mouse button and drag till the last required cell.
- To select two or more non-adjacent rows — select one row, hold Ctrl, then select the next row.
📦 2. Copying vs Moving Formula
- Click on the cell with the formula.
- Right-click → Copy (or Ctrl+C). To move, select Cut (or Ctrl+X).
- Click on the first cell where the formula should be placed.
- Keeping the left mouse button pressed, drag till the last cell.
- Right-click → Paste (or Ctrl+V).
- The formula is copied to all selected cells and calculates automatically.
1.8 Sorting and Filtering Data
📊 1. Sorting Data
Arranging words/numbers in order helps you find a particular entry quickly. Example: sort students by total marks to rank them.
- Select all rows and columns that have to be sorted.
- Click on Data → Sort.
- A Sort dialog box appears. For Sort Key 1, choose the column (e.g., Total).
- Choose order — Ascending (low → high) or Descending (high → low).
- Click OK. The data is rearranged accordingly.
🔎 2. Filtering Data — AutoFilter
Filters let you display only the rows that match a condition (e.g., show only students from Class XII-A).
- Click the AutoFilter icon on the Tool Bar.
- Small filter drop-downs appear at the top of each column.
- Click the filter for the desired column.
- Uncheck unwanted values (e.g., uncheck Class XII-B).
- Click OK — only matching rows are displayed.
1.9 Formulas and Functions
To do any calculation, start with "=" (equal-to) — this tells the spreadsheet a formula has been entered.
➕ 1. Adding Values Directly
Ms Sharma, a teacher, enters her students' marks in English, Maths and Science on a spreadsheet and wants to calculate each student's total.
🔢 2. Adding Using Cell Addresses
Use cell references so that if a value changes, the total updates automatically.
🖱️ 3. Using Mouse to Select Values in a Formula
- Type = in the target cell (e.g., E2).
- Click the first cell (B2) — it appears in the formula.
- Type +.
- Click the next cell (C2).
- Type +, click the next (D2).
- Press Enter.
🧮 4. Using the SUM() Function
- Type =Sum( in the target cell.
- Click on the first cell (B2), hold left mouse button and drag till the last (D2) — this selects the range.
- Type ) and press Enter.
SUM() adds all numbers in separate cells or a cell range in one go — ideal when you have many subjects or many rows.
1.10 Protecting the Spreadsheet with a Password
🔐 Method 1 — Tools Menu
- Click Tools → Protect Spreadsheet.
- In the Protect Document dialog box, type a password.
- Type the same password in the Confirm textbox.
- Click OK. Next time the file is opened it will ask for the password.
🔑 Method 2 — Save With Password
- Click File → Save As.
- Type the file name and tick Save with password → click Save.
- In the Set Password dialog, type the password twice → OK.
- Opening the file later will require the password.
1.11 Printing a Spreadsheet
- Click File → Print (or press Ctrl+P).
- The Print dialog box appears.
- Select the printer, the range of pages and the number of copies.
- Click OK.
1.12 Saving a Spreadsheet in Various Formats
- Click File → Save (or Ctrl+S). To change format or name, use Save As.
- The default Save as type is ODF Spreadsheet (.ods).
- You can also save as Microsoft Excel 2003 (.xls), newer .xlsx, CSV, HTML, etc.
- Click Save. To close after saving → File → Close.
- To reopen a saved file → File → Open, select the file, click Open.
2.1 Introduction to Presentations
Teachers, managers and researchers often need to explain ideas to an audience. Printed charts are limited — a digital presentation using presentation software can contain text, images, videos, animation and music, making it much more engaging.
🔹 Advantages of Digital Presentation
- They are interesting — features like images, videos, animation and music.
- Making changes in digital presentations is easy.
- They can be shown to a much larger audience by projecting on a screen.
- The presentation can be printed and distributed to the audience.
2.2 Software Packages for Presentation
- LibreOffice Impress — free, open-source (used in this chapter).
- Microsoft Office — PowerPoint.
- OpenOffice Impress.
- Google Slides — cloud-based, allows collaboration.
- Apple Keynote — for macOS / iPadOS.
Most features are the same across these tools.
2.3 Features of a Presentation
- Made up of slides — each slide is like a page.
- Slides can contain text, images, shapes, charts, videos and audio.
- Supports animations and slide transitions.
- Layouts help arrange text and images neatly.
- Can be exported to PDF or printed as handouts.
2.4 Creating a New Presentation — Starting LibreOffice Impress
- Ensure LibreOffice Impress is installed.
- Type LibreOffice Impress in the Windows search bar.
- Select it from the search results.
- LibreOffice Impress opens — cancel the Select a template dialog box.
- A blank presentation opens with the first slide ready.
🔹 Adding Text to the First Slide
By default, there are two textboxes in the first slide — the top one for the title, the lower (bigger) one for other details. Click on each and type content.
2.5 Adding a Slide to the Presentation
Do not cram everything onto one slide — use additional slides for each sub-topic.
- Click on Slide menu.
- Select New Slide from the drop-down (or press Ctrl+M).
- A blank slide is added after the current one; the layout of textboxes is similar to the previous slide.
2.6 Deleting a Slide
- Select the slide to delete.
- Click Slide → Delete Slide (or press the Del key).
2.7 Entering and Editing Text
The default layout has two textboxes — one for the title and one for content. Type directly into them.
If the slide has no textbox, insert one from Insert → Textbox, then drag to create the box and type.
2.8 Formatting Text
🔠 1. Change Font Style & Size
Click the Font Style drop-down to pick a different font. Click the Font Size drop-down to set the size (8, 12, 14, 22, etc.). The title is usually larger to stand out.
🖊️ 2. Highlighting — Bold · Underline · Italic · Strikethrough
Select the text → click the appropriate icon in the Properties tab. Options: Bold, Italic, Underline, Strikethrough. Keyboard shortcuts: Ctrl+B / Ctrl+I / Ctrl+U.
⬅️ 3. Aligning Text — Left · Right · Center · Justified
Use the Paragraph option in the Properties tab:
- Left / Right — aligns text to the left / right margin respectively.
- Center — aligns to the centre of the page.
- Justified — aligns text to both left and right margins (even edges).
🎨 4. Changing Text Colour & Highlight
Use the Font Color drop-down to change text colour. The Highlight Color drop-down changes the background colour of the selected text.
2.9 Inserting Clipart and Images
"A picture speaks a thousand words." Images make a presentation simple and interesting.
- Click Insert → Image (from the menu).
- An Insert Image dialog box appears.
- Browse the folder and select the image.
- Click Open — the image is inserted into the slide.
🔹 Inserting Shapes
LibreOffice provides lines, square, circle, arrows, symbols, etc., that can be inserted into slides (useful for flow-charts and diagrams like the Water Cycle).
- Click Insert → Shape.
- Choose the category (e.g., Arrow) and then a specific shape (e.g., Circular Arrow).
- Drag on the slide to draw the shape.
- Use the Properties tab to change the shape's colour, size, position or direction.
2.10 Slide Layout
The default layout has a title textbox plus one content textbox. A layout arranges slide content in an organised way.
- Select the slide whose layout you want to change.
- In the Layouts tab (side panel), pick a layout — e.g., Title + two content boxes to have an image on one side and steps on the other.
2.11 Saving a Presentation
- Click File → Save As (or Save).
- In the Save As dialog, pick a folder (e.g., Desktop).
- By default, the file name is Untitled#. Change it to a meaningful name.
- The default Save As type is .odp (ODF Presentation). You can also pick MS PowerPoint (.ppt/.pptx), HTML or text format.
- Click Save.
- For later saves, simply press Ctrl+S.
🔹 Closing & Reopening a Presentation
- Close: File → Close. If unsaved changes exist, a Save Document? dialog asks — Save / Discard / Cancel.
- Open: Open LibreOffice Impress → File → Open → browse to the folder → select file → Open.
2.12 Printing a Presentation Document
- Ensure a printer is connected and ready.
- Click File → Print (or Ctrl+P).
- In the Print dialog, select the printer.
- Select the number of copies.
- Select All to print every slide, or Slides and give slide numbers for a subset.
- Click OK.
- A spreadsheet is an electronic document that stores data systematically and performs calculations.
- Default alignment — text = left, numbers = right.
- Shortcut to underline text → Ctrl+U. To bold → Ctrl+B. To italic → Ctrl+I.
- To sort → Data → Sort. To filter → AutoFilter.
- To insert a new slide → Slide → New Slide or Ctrl+M.
- To insert shapes/images → Insert menu.
- The first Impress slide has 2 textboxes by default.
- To change the colour of text → Font Color drop-down.
Quick Revision — Key Points to Remember
- Spreadsheet = electronic document with rows & columns to store data and do calculations.
- Popular spreadsheets: Microsoft Excel · LibreOffice Calc · Google Sheets.
- Components: Row · Column · Cell · Formula Bar · Name Box · Worksheet · Workbook.
- Default alignment: Text = Left · Numbers = Right. Start formula with "=".
- Types of data: Text · Number · Formula · (media — images/audio/video/shapes).
- Edit cell: double-click · Formula Bar · retype.
- Delete cell data: Click cell → Delete key.
- Format shortcuts: Ctrl+B (bold) · Ctrl+U (underline) · Ctrl+I (italic).
- Cell range = multiple cells selected. Active cell = one cell selected.
- Copy/Move formulas: Ctrl+C / Ctrl+X then Ctrl+V — values adjust automatically in new cells.
- Sort: Data → Sort · Ascending / Descending.
- Filter: AutoFilter icon → uncheck unwanted values.
- Addition methods: direct numbers · cell addresses (=B2+C2+D2) · mouse selection · SUM() function.
- Protect spreadsheet: Tools → Protect Spreadsheet OR File → Save As → tick "Save with password".
- Print: File → Print (Ctrl+P). Save: default .ods · also .xls / .xlsx / .csv / .html.
- Presentation software lets you make digital slide-shows with text, images, video, audio, animation.
- Advantages: engaging · easy to edit · reach larger audience · can be printed.
- Popular software: LibreOffice Impress · MS PowerPoint · OpenOffice Impress · Google Slides · Apple Keynote.
- Default Impress slide: 2 textboxes (title + content).
- Add slide: Slide → New Slide (Ctrl+M). Delete slide: Slide → Delete Slide (Del).
- Insert textbox: Insert → Textbox. Insert image: Insert → Image.
- Insert shape: Insert → Shape (lines, square, circle, arrows, symbols).
- Text format: Font Style · Size · Bold (Ctrl+B) · Italic (Ctrl+I) · Underline (Ctrl+U) · Strikethrough.
- Alignment: Left · Right · Center · Justified.
- Colour: Font Color (text) · Highlight Color (background).
- Slide layout: pick from Layouts tab to arrange title + content boxes.
- Save presentation: File → Save As (default .odp; also .ppt / .pptx / HTML / text).
- Close / Open: File → Close (prompts to save); File → Open → browse → select file.
- Print: File → Print (Ctrl+P) · choose printer · All or selected Slides · number of copies.