๐ MS Office
Word, Excel, PowerPoint features and shortcuts.
๐ The Office Suite
MS Office is Microsoft's productivity suite. Most used: Word (documents), Excel (spreadsheets), PowerPoint (presentations), Access (database), Outlook (email).
MS Word key features: Word processing โ typing, formatting, spell check, mail merge, track changes, templates. File format: .docx (default), .doc (old), .pdf (export).
MS Excel key features: Spreadsheet โ cells in rows/columns. Formulas start with =. Functions: SUM, AVERAGE, COUNT, MAX, MIN, IF, VLOOKUP, HLOOKUP. Charts/graphs. Pivot tables. File: .xlsx.
MS PowerPoint: Presentations with slides. Animations, transitions, speaker notes. File: .pptx. Views: Normal, Slide Sorter, Reading, Slide Show.
=SUM(A1:A10) โ adds A1 to A10
=AVERAGE(B1:B5) โ average of range
=COUNT(C1:C10) โ counts numeric cells
=COUNTA(C1:C10) โ counts non-empty cells
=MAX(D1:D20) / =MIN(D1:D20) โ highest/lowest
=IF(A1>50,"Pass","Fail") โ conditional
=VLOOKUP(lookup_value, table_array, col_index, 0) โ vertical lookup
Cell reference: A1 (relative), $A$1 (absolute), $A1 or A$1 (mixed)
Word: Ctrl+B (Bold), Ctrl+I (Italic), Ctrl+U (Underline), Ctrl+S (Save), Ctrl+P (Print), Ctrl+F (Find), Ctrl+H (Replace), F7 (Spell Check), Ctrl+Enter (Page Break)
Excel: Ctrl+; (Today date), Alt+Enter (new line in cell), F2 (edit cell), Ctrl+Shift+$ (currency format), Ctrl+1 (format cells), F11 (create chart)
PowerPoint: F5 (start slideshow), Shift+F5 (from current slide), B (black screen during show), Ctrl+M (new slide), Ctrl+D (duplicate slide)
MS Office Apps Overview
AnimationMicrosoft 365 (cloud version) syncs all your documents across devices automatically.
Excel Functions Practice
InteractiveUse case: Sending 500 personalized invitation letters โ each with different name and address โ without typing each one individually.
Steps for Mail Merge:
1. Create main document โ the template letter with placeholders like <<Name>>, <<Address>>
2. Connect data source โ Excel sheet or Access table with names and addresses
3. Insert merge fields โ place <<Name>>, <<City>> in the right positions in the letter
4. Preview results โ check how merged letters look
5. Complete merge โ print all letters or save as separate documents
In Word: Mailings tab โ Start Mail Merge โ Select Document Type โ Select Recipients โ Insert Merge Field โ Finish and Merge
Mail Merge is used for: Form letters, address labels, envelopes, email campaigns, certificates.
โข Changes when you copy the formula to another cell
โข If =A1+B1 is in C1, copying to C2 becomes =A2+B2 (row adjusts)
โข Most common type โ used in most formulas
Absolute Cell Reference (e.g., $A$1):
โข Does NOT change when copied โ always refers to same cell
โข The $ sign locks the row, column, or both
โข Used when a formula needs to always refer to a fixed cell (like a tax rate, or a constant)
โข Example: =A1*$B$1 โ A1 changes row-by-row, but $B$1 always stays as B1
Mixed Reference:
โข $A1 โ column A is fixed, row can change
โข A$1 โ row 1 is fixed, column can change
Shortcut: Press F4 while editing a cell reference to cycle through: A1 โ $A$1 โ A$1 โ $A1 โ A1
Real example: Sales tax calculation โ =C2*$D$1 where D1 has the tax rate. Copy this formula down โ C2, C3, C4 all change, but D1 (tax rate) always stays fixed.