Essential Excel Formulas and Shortcuts: A Practical Guide from Beginner to Advanced

Master the most-used Excel formulas -- SUM, VLOOKUP, SUMIF, INDEX MATCH, and more -- with clear examples, a cheat sheet, and time-saving shortcuts.

Microsoft Excel remains the most widely used data tool in the world, with over 750 million users. Yet most people barely scratch the surface. Studies show the average Excel user knows fewer than five formulas, relying on manual calculations for tasks that a single formula could handle in seconds. This guide walks through the excel formulas list you actually need -- from the basics that everyone should know to the advanced excel formulas that separate casual users from power users.

Basic Excel Formulas Everyone Should Know

Before diving into complex functions, make sure you are comfortable with these basic excel formulas. They form the foundation of everything else in the spreadsheet.

SUM, AVERAGE, COUNT

These three functions handle the most common calculations:

=SUM(A1:A100)        Returns the total of cells A1 through A100
=AVERAGE(B2:B50)     Returns the arithmetic mean
=COUNT(C1:C200)      Counts cells that contain numbers
=COUNTA(C1:C200)     Counts cells that are not empty (includes text)

MIN and MAX

Find the smallest and largest values in a range:

=MIN(D2:D100)        Returns the lowest value
=MAX(D2:D100)        Returns the highest value

IF Statements

The IF function is your first step into logical formulas. It tests a condition and returns one value if true, another if false:

=IF(A2>100, "Over budget", "Within budget")

You can nest IF statements for multiple conditions, though for complex logic, the newer IFS function is cleaner:

=IFS(A2>=90, "A", A2>=80, "B", A2>=70, "C", A2>=60, "D", TRUE, "F")

CONCATENATE and TEXTJOIN

Combine text from multiple cells:

=CONCATENATE(A2, " ", B2)          Joins first and last name
=TEXTJOIN(", ", TRUE, A2:A10)      Joins a range with commas, skipping blanks
How to create formulas in Excel: Always start with the equals sign =. Click on cells instead of typing addresses manually to avoid typos. Press Tab to accept the formula (not just Enter) to stay in the same row for faster data entry across columns.

How to Use VLOOKUP in Excel

VLOOKUP is one of the most searched Excel functions for good reason -- it lets you look up a value in one table and pull related data from another column. Understanding how to use VLOOKUP in Excel opens the door to connecting datasets that would otherwise require manual cross-referencing.

The syntax is:

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

Here is what each argument means:

VLOOKUP Example

Suppose column A has product IDs and column B has product names in a reference table on Sheet2. To look up the name for product ID "P1042":

=VLOOKUP("P1042", Sheet2!A:B, 2, FALSE)

This searches for "P1042" in the first column of Sheet2's A:B range and returns the corresponding value from column B.

VLOOKUP Limitations

VLOOKUP can only search the leftmost column of your table range. If your lookup column is not on the left, you need to either rearrange your data or use INDEX MATCH (covered below). VLOOKUP also slows down on very large datasets because it searches the entire column each time.

The Excel SUMIF Formula

The excel SUMIF formula adds up values that meet a specific condition. It is one of the most practical formulas for financial and operational analysis.

=SUMIF(range, criteria, [sum_range])

SUMIF Examples

=SUMIF(B2:B100, "East", C2:C100)
  Sums all values in column C where column B equals "East"

=SUMIF(D2:D100, ">1000")
  Sums all values in column D that are greater than 1000

=SUMIF(A2:A100, "*.com", C2:C100)
  Sums column C for all rows where column A ends with ".com"

SUMIFS for Multiple Conditions

When you need to filter by more than one criterion, use SUMIFS:

=SUMIFS(C2:C100, B2:B100, "East", D2:D100, ">1000")
  Sums column C where region is "East" AND amount is over 1000

Note the syntax difference: in SUMIFS, the sum range comes first, followed by pairs of criteria ranges and criteria.