Microsoft Excel is one of the most widely used tools for data analysis, budgeting, reporting, and many other tasks. The foundation of any proficient Excel user lies in three core abilities: This page walks you through each concept, provides clear examples, and ends with handson exercises you can try right now. All formulas begin with an equal sign ( Functions are predefined formulas that perform specific calculations. The most common ones include: There are three reference types: To reference a cell on another sheet, type the sheet name followed by an exclamation point. The full reference includes the workbook name (in square brackets) and the full path if the workbook isnt open. Try the following tasks in a new workbook. Each exercise builds on the previous one. These exercises illustrate how formulas, references, and links work together to create dynamic spreadsheets.Excel Skills Exercises, Entering Formulas & Linking Cells
Introduction
Basic Formula Entry
1. Starting a Formula
=). After the sign, you can type numbers, cell references, functions, or a combination of these.
=5+3 returns 8.
=A2+B2 adds the values in cells A2 and B2. 2. Using Functions
Function Purpose SUM(range)Adds all numbers in the range. AVERAGE(range)Calculates the arithmetic mean. COUNT(range)Counts numeric entries. IF(logical_test, value_if_true, value_if_false)Performs a logical test. 3. Understanding Cell References
=A2*B2. Copy to C3.
Result: Formula becomes =A3*B3 (relative reference).
Fixing the multiplier: Use =A2*$B$1. When copied, it stays $B$1. Linking Cells Across Worksheets and Workbooks
1. Linking Within the Same Workbook
=Sales!D5 pulls the value from cell D5 on the sheet named Sales.
If the sheet name contains spaces, surround it with single quotes: ='Quarter 1'!B2. 2. Linking to a Different Workbook
=C:\Reports\[Budget2023.xlsx]Summary!C10 Returns the value from cell C10 on the Summary sheet of the file Budget2023.xlsx located in C:\Reports.
When both workbooks are open, Excel shortens the link to: . 3. Updating Links
Practice Exercises
Exercise1 Simple Calculations
=A2*1.08 (add 8% tax). Copy down to B4.=SUM(B2:B4).Exercise2 Absolute References
=A2*(1-$D$1). Copy down to C4.Exercise3 Linking Sheets
=Data!A3. The value from A3 on Data appears on Summary.Exercise4 Linking Workbooks
='[Source.xlsx]Sheet1'!F5. The value 250 appears.Exercise5 Using IF with Linked Cells
=IF(Data!B2>=200,"Good","Low") and copy down.Tips & Common Errors
F2 to edit a cell in place. This makes it easier to adjust references without leaving the cell.NAME box. Click the box left of the formula bar, type a cell address (e.g., A1) and press Enter to jump quickly.Ctrl+` (grave accent) to toggle formula view. This lets you see every formula at once for auditing.Common Error Messages
Error Meaning Fix #REF! Invalid reference (usually after deleting a referenced cell). Reenter a correct reference or use the Undo command. #DIV/0! Division by zero. Check divisor cell for zero or use IFERROR to handle it.#NAME? Excel doesnt recognize text in the formula. Make sure function names are spelled correctly and that text strings are in quotes. #VALUE! Wrong type of argument (e.g., text where a number is expected). Convert text to numbers or adjust the formula logic.
