šŸ“Š Excel Quick Reference

VUB Intermediate Computer Skills - Week 5

REFERENCE

šŸ”¢ Essential Formulas

SUM - Add Numbers

=SUM(A1:A10)

Adds all values from A1 through A10

AVERAGE - Find Mean

=AVERAGE(A1:A10)

Calculates the average of values

MAX - Highest Value

=MAX(A1:A10)

Finds the largest number in range

MIN - Lowest Value

=MIN(A1:A10)

Finds the smallest number in range

COUNT - Count Numbers

=COUNT(A1:A10)

Counts cells that contain numbers

Simple Math

=A1+B1

Add cells. Also: -subtract, *multiply, /divide

āš ļø Remember: Every formula MUST start with an equals sign (=). Without it, Excel treats your entry as text, not a formula!

āŒØļø Keyboard Shortcuts

Alt+=
AutoSum (instant SUM)
Ctrl+S
Save workbook
Ctrl+Z
Undo last action
Tab
Move to next cell (right)
Enter
Move to next cell (down)
Delete
Clear cell contents

šŸ“‹ Common Tasks

Sort Data

  1. Click any cell in the column to sort
  2. Go to Data tab
  3. Click A→Z (ascending) or Z→A (descending)

Filter Data

  1. Click any cell in your data
  2. Go to Data tab → Filter
  3. Click dropdown arrow on header
  4. Uncheck items to hide them

Create a Chart

  1. Select your data (including headers)
  2. Go to Insert tab
  3. Choose chart type (Column, Pie, Line)
  4. Click to insert

Format Numbers as Currency

  1. Select cells with numbers
  2. Go to Home tab
  3. Click $ in Number group

šŸ“Š When to Use Each Chart

Column/Bar Chart

Compare different categories
Example: Expenses by month

Pie Chart

Show parts of a whole (%)
Example: Budget breakdown

šŸ’” Pro Tips: The colon (:) in formulas means "through" — so A1:A10 means "A1 through A10". Use Alt+= below a column of numbers to instantly insert a SUM formula! Always save your work with Ctrl+S before closing.