Basic Excel Formulas (2024)

Time-saving ways to insert formulas into Excel

Over 1.8 million professionals use CFI to learn accounting, financial analysis, modeling and more. Start with a free account to explore 20+ always-free courses and hundreds of finance templates and cheat sheets.

Start Free

Written byCFI Team

Reviewed byJeff Schmidt

Mastering the basic Excel formulas is critical for beginners to become highly proficient infinancial analysis.Microsoft Excelis considered the industry standard piece of software in data analysis. Microsoft’s spreadsheet program also happens to be one of the most preferred software byinvestment bankersand financial analysts in data processing,financial modeling, and presentation.

This guide will provide an overview and list of some basic Excel functions.

Basic Excel Formulas (1)

Once you’ve mastered this list, move on to CFI’s Advanced Excel Formulas guide!

Basic Terms in Excel

There are two basic ways to perform calculations in Excel: Formulas and Functions.

1. Formulas

In Excel, a formula is an expression that operates on values in a range of cells or a cell. For example, =A1+A2+A3, which finds the sum of the range of values from cell A1 to cell A3.

2. Functions

Functions are predefined formulas in Excel. They eliminate laborious manual entry of formulas while giving them human-friendly names. For example: =SUM(A1:A3). The function sums all the values from A1 to A3.

Key Highlights

  • Excel is still the industry benchmark for financial analysis and modeling across almost all corporate finance functions. This course is designed to highlight some of the most important basic Excel formulas.
  • Mastering these will help a learner build confidence in Excel and move on to more difficult functions and formulas.
  • There are also several different ways to enter a function in Excel, as shown below.

Five Time-saving Ways to Insert Data into Excel

When analyzing data, there are five common ways of inserting basic Excel formulas. Each strategy comes with its own advantages. Therefore, before diving further into the main formulas, we’ll clarify those methods, so you can create your preferred workflow earlier on.

1. Simple insertion: Typing a formula inside the cell

Typing a formula in a cell or the formula bar is the most straightforward method of inserting basic Excel formulas. The process usually starts by typing an equal sign, followed by the name of an Excel function.

Excel is quite intelligent in that when you start typing the name of the function, apop-upfunction hint will show (see below). It’s from this list you’ll select your preference. However, don’t press the Enter key after making your selection. Instead, press the Tab key and Excel will automatically fill in the function name.

Basic Excel Formulas (2)

2. Using Insert Function Option from Formulas Tab

If you want full control of your function’s insertion, using the Excel Insert Function dialogue box is all you ever need. To achieve this, go to the Formulas tab and select the first menu labeled Insert Function. The dialogue box will contain all the functions you need to complete yourfinancial analysis.

Basic Excel Formulas (3)

3. Selecting a Formula from One of the Groups in Formula Tab

This option is for those who want to delve into their favorite functions quickly. To find this menu, navigate to the Formulas tab and select your preferred group. Click to show a sub-menu filled with a list of functions.

From there, you can select your preference. However, if you find your preferred group is not on the tab, click on the More Functions option – it’s probably just hidden there.

Basic Excel Formulas (4)

4. Using AutoSum Option

For quick and everyday tasks, the AutoSum functionis your go-to option. Navigate to theFormulas tab and click the AutoSum option. Then click the caret to show other hidden formulas. This option is also available in the Home tab.

Basic Excel Formulas (5)

5. Quick Insert: Use Recently Used Tabs

If you find re-typing your most recent formula a monotonous task, then use the Recently Used selection. It’s on the Formulas tab, a third menu option just next to AutoSum.

Basic Excel Formulas (6)

Free Excel Formulas YouTube Tutorial

Watch CFI’s FREE video tutorial to quickly learn the most important Excel formulas. By watching the video demonstration you’ll quickly learn the most important formulas and functions.

Seven Basic Excel Formulas For Your Workflow

Since you’re now able to insert your preferred formulas and function correctly, let’s check some fundamental Excel functions to get you started.

1. SUM

The SUM function is the first must-know formula in Excel. It usually aggregates values from a selection of columns or rows from your selected range.

=SUM(number1, [number2], …)

Example:

=SUM(B2:G2) – A simple selection that sums the values of a row.

=SUM(A2:A8) – A simple selection that sums the values of a column.

=SUM(A2:A7, A9, A12:A15) – A sophisticated collection that sums values from range A2 to A7, skips A8, adds A9, jumps A10 and A11, then finally adds from A12 to A15.

=SUM(A2:A8)/20 – Shows you can also turn your function into a formula.

Basic Excel Formulas (7)

2. AVERAGE

The AVERAGE function should remind you of simple averages of data, such as the average number of shareholders in a given shareholding pool.

=AVERAGE(number1, [number2], …)

Example:

=AVERAGE(B2:B11) – Shows a simple average, also similar to (SUM(B2:B11)/10)

Basic Excel Formulas (8)

3. COUNT

The COUNT function counts all cells in a given range that contain only numeric values.

=COUNT(value1, [value2], …)

Example:

COUNT(A:A) – Counts all values that are numerical in A column. However, you must adjust the range inside the formula to count rows.

COUNT(A1:C1) – Now it can count rows.

Basic Excel Formulas (9)

4. COUNTA

Like the COUNT function, COUNTA counts all cells in a given rage. However, it counts all cells regardless of type. That is, unlike COUNT that only counts numerics, it also counts dates, times, strings, logical values, errors, empty string, or text.

=COUNTA(value1, [value2], …)

Example:

COUNTA(C2:C13) – Counts rows 2 to 13 in column C regardless of type. However, like COUNT, you can’t use the same formula to count rows. You must make an adjustment to the selection inside the brackets – for example, COUNTA(C2:H2)will count columns C to H

Basic Excel Formulas (10)

5. IF

The IF function is often used when you want to sort your data according to a given logic. The best part of the IF formula is that you can embed formulas and functions in it.

=IF(logical_test, [value_if_true], [value_if_false])

Example:

=IF(C2<D3,“TRUE”,”FALSE”) – Checks if the value at C3 is less than the value at D3. If the logic is true, let the cell value be TRUE, otherwise, FALSE

=IF(SUM(C1:C10) > SUM(D1:D10), SUM(C1:C10), SUM(D1:D10)) – An example of a complex IF statement. First, it sums C1 to C10 and D1 to D10, then it compares the sum. If the sum of C1 to C10 is greater than the sum of D1 to D10, then it makes the value of a cell equal to the sum of C1 to C10.

Basic Excel Formulas (11)

6. TRIM

TheTRIM function makes sure your functions do not return errors due to extra spaces in your data. It ensures that all empty spaces are eliminated. Unlike other functions that can operate on a range of cells, TRIM only operates on a single cell. Therefore, it comes with the downside of adding duplicated data to your spreadsheet.

=TRIM(text)

Example:

TRIM(A2) – Removes empty spaces in the value in cell A2.

Basic Excel Formulas (12)

7. MAX & MIN

The MAX and MIN functions help in finding the maximum number and the minimum number in a range of values.

=MIN(number1, [number2], …)

Example:

=MIN(B2:C11) – Finds the minimum number between column B from B2 and column C from C2 to row 11 in both columns B and C.

=MAX(number1, [number2], …)

Example:

=MAX(B2:C11) – Similarly, it finds the maximum number between column B from B2 and column C from C2 to row 11 in both columns B and C.

Basic Excel Formulas (13)

Basic Excel Formulas (14)

More Resources

Thank you for reading CFI’s guide to basic Excel formulas. To continue your development as a world-class financial analyst, these additional CFI resources will be helpful:

  • Advanced Excel Formulas
  • Excel TEXT Function
  • Benefits of Excel Shortcuts
  • Excel Test
  • See all Excel resources
Basic Excel Formulas (2024)

FAQs

What are the 25 commonly used formulas in MS Excel? ›

Indian Payroll Trainer | Excel VBA Trainer |…
  • SUM formula: Example: =SUM(A1:A5) ...
  • AVERAGE formula: Example: =AVERAGE(B1:B10) ...
  • COUNT formula: Example: =COUNT(C1:C8) ...
  • MAX formula: Example: =MAX(D1:D6) ...
  • MIN formula: Example: =MIN(E1:E4) ...
  • IF formula: Example: =IF(F1>10, "Pass", "Fail") ...
  • VLOOKUP formula: ...
  • CONCATENATE formula:
Jun 15, 2023

What is VLOOKUP in Excel? ›

VLOOKUP stands for 'Vertical Lookup'. It is a function that makes Excel search for a certain value in a column (the so called 'table array'), in order to return a value from a different column in the same row. This article will teach you how to use the VLOOKUP function.

How to use Excel formulas for beginners? ›

Try it!
  1. Select a cell.
  2. Type the equal sign =.
  3. Type or select a cell, or type in a function, like SUM.
  4. Enter an operator, like minus -, or select the cells or range that are part of the function.
  5. Press Enter for the result. The result shows in the cell, but you can always see the formula in the Formula bar.

What is the easiest way to learn Excel formulas? ›

The easiest way to learn Excel formulas is by practicing the examples given in this article with real-world examples. Start with basic formulas and gradually progress to more complex ones. DataCamp tutorials, courses, and cheat sheets can also be helpful resources.

How do I remember all Excel formulas? ›

Excel: Memorizing and Recognizing Basic Functions and Formulas
  1. Open Microsoft Excel, Click the plus button to open a blank workbook.
  2. Input all necessary data into the workbook.
  3. Select an empty cell.
  4. Type an equal sign along with the corresponding formula (formulas listed below) See the below screenshot for an example.

How to use MS Excel for beginners? ›

Enter your data
  1. Click an empty cell. For example, cell A1 on a new sheet. Cells are referenced by their location in the row and column on the sheet, so cell A1 is in the first row of column A.
  2. Type text or a number in the cell.
  3. Press Enter or Tab to move to the next cell.

What is a PivotTable used for? ›

A PivotTable is an interactive way to quickly summarize large amounts of data. You can use a PivotTable to analyze numerical data in detail, and answer unanticipated questions about your data. A PivotTable is especially designed for: Querying large amounts of data in many user-friendly ways.

What do 37 all formulas in Excel start with? ›

A formula always begins with an equal sign (=). Excel for the web interprets the characters that follow the equal sign as a formula. Following the equal sign are the elements to be calculated (the operands), such as constants or cell references. These are separated by calculation operators.

What are the 10 functions of Excel? ›

10 top Excel functions in data analysis
  • EXACT. The EXACT function in Excel compares two strings of text to determine if they are identical. ...
  • TRIM. The TRIM function cleans data in Excel by leaving one space between words while removing all other spaces from the text. ...
  • SUMPRODUCT. ...
  • REPLACE. ...
  • SUBSTITUTE. ...
  • Min and Max. ...
  • Match. ...
  • IfError.
Apr 11, 2024

Top Articles
Latest Posts
Article information

Author: Amb. Frankie Simonis

Last Updated:

Views: 6213

Rating: 4.6 / 5 (76 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Amb. Frankie Simonis

Birthday: 1998-02-19

Address: 64841 Delmar Isle, North Wiley, OR 74073

Phone: +17844167847676

Job: Forward IT Agent

Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.