×

Want to Be an Excel Wizard? 20 Key Formulas You Need to Know


Want to Be an Excel Wizard? 20 Key Formulas You Need to Know


Excel Your Spreadsheets

Quick: how do you add up a row of numbers in Excel? Or how many times a particular value or number appears in a column? Sure, you might not think it's all that important to excel at Excel, but at least the next time a job post asks for it, you won't need to lie—or, ahem, rely on ChatGPT—to organize your work spreadsheets. Plus, Excel isn't just for data analysts and accountants; the program can come in handy for sorting your personal finances, budgets, and even hobbies (like creating a collection tracker of all your Pokémon cards, because why not?). So, if you're ready to become an Excel wizard, be sure you memorize these 20 key formulas.

17859565125fa452b1a1febcb76e0352112fe5e45656dbfd3e.jpgRubaitul Azad on Unsplash

1. SUM

The SUM function adds numbers from individual cells or an entire range. For example, =SUM(B2:B10) calculates the total of every value between cells B2 and B10. It’s more efficient than typing each cell reference separately, especially when you’re working with long lists of expenses, sales, or quantities.

1785956556f587a7959207fcf7274f4f267e3061710c58f40e.jpegBOOM 💥 Photography on Pexels

2. AVERAGE

Use AVERAGE when you need to calculate the arithmetic mean of a group of numbers. A formula such as =AVERAGE(C2:C20) adds the values in the selected range and divides the total by the number of numeric entries. This function is useful for reviewing test scores, monthly performance, customer ratings, and other data sets where a central value matters.

1785956597a3174208e595bec4856003cbfee42ae2eb617da8.jpgTowfiqu barbhuiya on Unsplash

3. MIN

The MIN function returns the smallest number within a selected range. Entering =MIN(D2:D50), for instance, identifies the lowest value without requiring you to sort the data first. It can help you find the lowest price, shortest completion time, lowest temperature, or weakest performance result.

1785956747175fab9c3675719ba1508ed3d7218f71be1616b1.jpgMarkus Winkler on Unsplash

Advertisement

4. MAX

When you need the highest value in a data set, the MAX function provides it immediately. The formula =MAX(E2:E100) searches the specified cells and returns the largest number it finds. You might use it to identify the top sales figure, highest score, largest transaction, or peak inventory level.

1785956844b98f1712632979532154081611e0c9e456c7fdee.jpegRDNE Stock project on Pexels

5. COUNT

COUNT tells you how many cells in a range contain numbers. If you enter =COUNT(A2:A30), Excel ignores text and blank cells while counting numeric entries. This makes the function helpful when you want to confirm how many recorded values appear in a column.

17859568836e34f8fe9300a2eb53a46d9ec3f9420d3b97d892.jpgMika Baumeister on Unsplash

6. COUNTA

Unlike COUNT, the COUNTA function includes cells containing text, numbers, dates, logical values, and most other nonblank entries. A formula such as =COUNTA(A2:A30) shows how many cells in the range contain any type of data. It’s particularly useful for counting names, completed records, submitted responses, or populated rows.

17859569089e7412782094b41cd2f1078927bf1d63a4250d21.jpgTyler Easton on Unsplash

7. IF

The IF function checks whether a condition is true and returns one result if it is and another if it isn’t. For example, =IF(B2>=70,"Pass","Fail") displays “Pass” when the value in B2 is at least 70 and “Fail” when it falls below that level. Learning this function allows you to create spreadsheets that respond automatically to different values.

1785956945ae0d19b4a0be3c7d62d976caf204a92afa8cb2c4.jpgBrett Jordan on Unsplash

8. AND

AND determines whether multiple conditions are all true at the same time. You could use =AND(B2>=70,C2="Complete") to confirm that someone has both earned a passing score and completed a required task. The function returns TRUE only when every included condition is satisfied.

178595703069cc8a4e0b02539e44d1d00b18475fc669d526c1.jpgNellie Adamyan on Unsplash

9. OR

The OR function checks several conditions but only requires one of them to be true. A formula such as =OR(D2="Urgent",E2<TODAY()) can flag a record when it’s marked urgent or when its deadline has passed. This gives you more flexibility when several different circumstances should produce the same result.

1785957180d65937df746208835ba6ac56d63b4d42d22f05e5.jpegJESSICA TICOZZELLI on Pexels

Advertisement

10. SUMIF

SUMIF adds values only when they meet a specific condition. For instance, =SUMIF(A2:A100,"West",B2:B100) totals the numbers in column B whenever the corresponding cell in column A contains “West.” It’s a practical choice for calculating totals by department, region, category, employee, or product type.

17859572300ef5c191f6f797117c0363883c55e26e36176f6e.jpgBrett_Hondow on Pixabay

11. SUMIFS

When one condition isn’t enough, SUMIFS lets you calculate a total using several criteria. The formula =SUMIFS(C2:C100,A2:A100,"West",B2:B100,"Online") adds values from column C only for rows that match both “West” and “Online.” This function is especially valuable when you’re analyzing detailed records with multiple categories.

1785957297e7dcc82b8c3a69b7e258708bc72a3001f2d53397.jpgAntoine Dautry on Unsplash

12. COUNTIF

The COUNTIF function counts how many cells meet a stated condition. Enter =COUNTIF(B2:B50,"Approved") to see how many cells in the range contain the word “Approved.” You can also use comparison operators, such as =COUNTIF(C2:C50,">100"), to count values above or below a certain number.

1785957325fe074b5fb8119f18013c5478fd8d62c58147c636.jpgMarkus Krisetya on Unsplash

13. COUNTIFS

COUNTIFS works like COUNTIF, but it evaluates more than one requirement. For example, =COUNTIFS(A2:A100,"East",B2:B100,">500") counts rows where the region is East and the value exceeds 500. It’s useful when you need precise counts from a large table without filtering the records manually.

1785957370baf944d7fb7bd0c4d53bcd365e983d9b705db0e7.jpegBlack ice on Pexels

14. XLOOKUP

XLOOKUP searches for a value in one range and returns related information from another. A formula such as =XLOOKUP(A2,F2:F100,G2:G100,"Not Found") searches column F for the value in A2 and returns the matching entry from column G. It’s flexible, readable, and often easier to maintain than older lookup formulas.

1785957404512f539df13f0ac8e90ab30aba754bee61caba6a.jpgMediamodifier on Unsplash

15. VLOOKUP

Although XLOOKUP is available in newer versions of Excel, VLOOKUP remains common in existing workbooks. The formula =VLOOKUP(A2,F2:H100,3,FALSE) searches for the value in A2 within the first column of the selected table and returns a result from its third column. The final FALSE requests an exact match, which is usually the safest option for IDs, names, and product codes.

1785957418fbf4dcacebd296767bbde201bed4510ebaa15900.jpgAgence Olloweb on Unsplash

Advertisement

16. INDEX and MATCH

INDEX and MATCH can be combined to create a flexible lookup formula. One example is =INDEX(C2:C100,MATCH(F2,A2:A100,0)), which finds the value in F2 within column A and returns the corresponding entry from column C. This combination can look to the left or right of the search column, which gives it an advantage over traditional VLOOKUP.

1785957724b78bf28c5968a4cec7d717fca394eef0c68e4181.jpgKOBU Agency on Unsplash

17. CONCAT

The CONCAT function joins text from multiple cells into one result. You could enter =CONCAT(A2," ",B2) to combine a first name and last name with a space between them. It’s useful when building full names, addresses, labels, reference codes, or other combined text fields.

178595775580029e387bfa00fd673abf499b2210d84dbcd815.jpegPolina Tankilevitch on Pexels

18. LEFT, RIGHT, and MID

These three functions extract selected characters from a text string. LEFT starts from the beginning, RIGHT starts from the end, and MID pulls characters from a specified position within the text. For example, =LEFT(A2,3) returns the first three characters from cell A2, which can help separate prefixes, area codes, or identifying segments.

17859578172b59fc51c1187a847cfba804a6888844120ac68e.jpegAnn H on Pexels

19. TRIM

Extra spaces can interfere with sorting, matching, and lookup formulas, particularly when data has been imported from another source. The TRIM function removes unnecessary spaces while leaving single spaces between words. Using =TRIM(A2) can clean a text entry and make it more consistent with the rest of your spreadsheet.

178595784069e9752d2e0ebaf7a5ec4f45d67fa2dc29bbbff1.jpgUjesh Krishnan on Unsplash

20. TODAY

The TODAY function inserts the current date and updates automatically whenever the workbook recalculates. Since it doesn’t require an argument, you can simply enter =TODAY() into a cell. It’s helpful for calculating deadlines, tracking how many days have passed, identifying overdue items, and creating reports that always display the present date.

1785957861ba793ab89535577ea068b30ff78baa03240e0bb3.jpgTowfiqu barbhuiya on Unsplash