Topic 3 of 6

Excel Basics & Shortcuts

Almost every office job touches a spreadsheet at some point. Here's what you need to know the first time you open Excel.

Before you stress about any of this: most internships and workplaces don't expect you to walk in already knowing everything. They'll typically train you and provide the specific information or templates you need for the job.

The basic necessities

📋 Know your terms

  • Workbook: the entire Excel file.
  • Worksheet (tab): one page/sheet inside the workbook. A workbook can have many.
  • Cell: a single box, named by its column letter + row number (like B4).
  • Row / Column: rows run horizontally (numbered), columns run vertically (lettered).
  • Range: a group of cells, written like A1:A10 (A1 through A10).

🔢 Formulas & functions

Every formula starts with an equals sign =. Functions are built-in formulas that do the math for you.

FunctionWhat it doesExample
SUMAdds up a range of numbers=SUM(A1:A10)
AVERAGEFinds the average of a range=AVERAGE(B1:B10)
COUNTCounts how many cells have numbers=COUNT(C1:C20)
MAX / MINFinds the largest / smallest value=MAX(D1:D10)
IFReturns one value if true, another if false=IF(A1>10,"Pass","Fail")
VLOOKUPLooks up a value in a table by matching a column=VLOOKUP(A2,D:F,2,FALSE)

🎨 Formatting basics

  • Use bold headers and borders to keep tables easy to read.
  • Format numbers as currency, percentage, or decimals from the "Number Format" dropdown.
  • Freeze the header row (View > Freeze Panes > Freeze Top Row) so it stays visible while you scroll.
  • Use filters (Data > Filter) to sort and narrow down large tables.

Keyboard shortcuts you'll actually use

These will make you noticeably faster than clicking through menus, and faster is what people notice.

ActionWindowsMac
SaveCtrl + S + S
Undo / RedoCtrl+Z / Ctrl+Y+Z / ++Z
Copy / Cut / PasteCtrl+C / X / V+C / X / V
Bold / Italic / UnderlineCtrl+B/I/U+B/I/U
Select entire rowShift + Space + Space
Select entire columnCtrl + Space + Space
Insert new row/columnCtrl + + + +
Delete row/columnCtrl + - + -
Jump to edge of dataCtrl + arrow key + arrow key
Select to edge of dataCtrl+Shift+arrow++arrow
Autosum a rangeAlt + = + + T
Fill formula/data downCtrl + D + D
Insert current dateCtrl + ; + ;
Edit a cellF2 + U
Create a new sheet tabShift + F11 + F11
Toggle absolute reference ($)F4 + T

Want this as a printable sheet?

Open the one-page cheat sheet, formatted to print or save as a PDF for quick reference.

Open Cheat Sheet →
Tip: you don't need to memorize all of these at once. Keep the cheat sheet open next to you the first few times you use Excel. The shortcuts stick after a little repetition.