How to Use Formulas in Excel

How to Use Formulas in Excel

Formulas are the reason Excel is more than just a grid for typing numbers — they’re what turn a static table into a living, calculating system. When I first started using Excel, formulas felt intimidating, full of strange symbols and function names. Over time I realized they follow a small set of consistent rules, and once those click, you can build almost anything. In this guide, I’ll walk through everything I wish someone had explained to me when I was starting out.

What a Formula Actually Is

A formula is an instruction that tells Excel to calculate something, rather than just display a typed-in value. Every formula starts with an equals sign (=). Without it, Excel just treats whatever you type as plain text.

For example:

Basic Formula Structure

A formula generally combines:

Example: =A2*B2+10 multiplies A2 by B2, then adds 10 to the result.

Step-by-Step: Writing Your First Formula

  1. Click the cell where you want the result to appear.
  2. Type =.
  3. Click a cell (or type its reference), like A2.
  4. Type an operator, like +.
  5. Click another cell, like B2.
  6. Press Enter.

Excel shows the result immediately, and if you click back on that cell, the formula bar at the top shows the actual formula, not just the answer.

Relative vs. Absolute References

This is one of the most important concepts I had to properly understand before formulas started making sense.

I use absolute references constantly when multiplying a whole column by one fixed value, like a tax rate or exchange rate sitting in a single cell.

Commonly Used Functions

Beyond basic math operators, Excel has hundreds of built-in functions. Here are the ones I reach for most often:

Step-by-Step: Using the IF Function

The IF function is one of the most powerful and commonly used formulas, so let me walk through it specifically:

=IF(logical_test, value_if_true, value_if_false)

Example: =IF(B2>=50, "Pass", "Fail") checks if B2 is 50 or more. If true, it shows “Pass”; if false, it shows “Fail.”

I can also nest multiple IF statements for more conditions:

=IF(B2>=90, "A", IF(B2>=75, "B", IF(B2>=50, "C", "F")))

This checks each condition in order and assigns a grade accordingly.

Step-by-Step: Using VLOOKUP

VLOOKUP searches for a value in the leftmost column of a range and returns a value from a specified column in the same row.

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

Example: =VLOOKUP(A2, D2:F20, 3, FALSE) looks for the value in A2 within column D, then returns the value from the third column of that range (F), on the matching row. I always set the last argument to FALSE for an exact match — leaving it blank or TRUE can silently return incorrect approximate matches.

Copying Formulas Across Rows or Columns

Instead of retyping a formula in every row, I write it once and then:

  1. Click the cell with the formula.
  2. Hover over the small square at the bottom-right corner (the fill handle) until the cursor becomes a thin black cross.
  3. Double-click it (auto-fills down to match adjacent data), or click and drag down/across manually.

Using Functions Across Multiple Sheets

Formulas can reference cells on other sheets using the sheet name followed by an exclamation mark:

=Sheet2!A2 + Sheet3!A2

This adds a value from Sheet2 to a value from Sheet3, right on your current sheet.

Practical Example

Let’s say I have a student marksheet:

My formulas:

Dragging both down instantly grades every student and flags pass/fail status without manual review.

Common Mistakes I See

Troubleshooting Tips

Real-World Use Cases

Best Practices I Follow

Formulas are what make Excel genuinely powerful, and the learning curve is really just about getting comfortable with references, functions, and a bit of logical thinking. Once IF, SUM, and VLOOKUP start feeling natural, you’ll find you can build almost any calculation you need without ever touching a calculator again.

Exit mobile version