Formulas are a powerful tool in Excel. They can help you quickly and easily calculate complex data values, and they can be used to create custom reports and charts. In this article, we’ll show you how to create a basic formula, and then we’ll explore some more advanced formulas. To start, open the Excel workbook that you want to use the formulas in. Next, click on the cell that you want to use as the source for your calculations. (If you don’t have any cells selected, your workbook will look like this: To create a basic formula, type = at the beginning of your cell, followed by the value that you want to calculate. For example, if you wanted to find out how many salespeople are working in your company, you could type =SALESPEOPLE into your cell and press Enter. Excel would then automatically calculate the value inside of the parentheses (in this case, it would be 6). You can also use parentheses to group different values together. For example, if you wanted to find out how much money each salesperson has made in total over the past year, you could type =SALESPEOPLE(1), =SALESPEOPLE(2), etc., into your cell and press Enter. This would return a value of $168 million for each of the salespeople in your company (assuming that there are currently six salespeople working in your company). If you want to include a decimal point in your calculation (for example, if you’re calculating an amount that’s greater than 1 million), simply place a comma after the number that follows the equals sign (=). For example: =SALESPEOPLE(1,".",“000). This would return “6.,000.” for each of the cells containing SALESPEOPLE values (assuming there are currently six salespeople working in your company). ..


In this lesson, we introduce you to basic rules for creating formulas and using functions. We feel one of the best ways to learn is through practice, so we provide several examples and explain them in detail. The topics we will cover include:

rows and columns example math function: SUM() operators operator precedence example financial function: PMT(), loan payment using a “string” function (“string” is shorthand for “string of text”) inside a formula and nesting functions

Formulas are a mixture of “functions,” “operators,” and “operands.” Before we write a few formulas, we need to create a function but before we can create a function, we first need to understand row and column notation.

Rows and Columns

To understand how to write formulas and functions, you need to know about rows and columns.

Rows run horizontally and columns run vertically. To remember which is which, think of a column holding up a roof – columns go up-down and thus rows go left-right.

Columns are labeled by letters; rows by numbers. The first cell in the spreadsheet is A1 meaning column A, row 1. The columns are labeled A-Z. When the alphabet runs outs, Excel places another letter in front: AA, AB, AC… AZ, BA, BC, BC, etc.

Example: Function Sum()

Now let’s demonstrate how to use a function.

You use functions by typing them directly in or using the function wizard. The function wizard opens when you either pick a function from the “Formulas” menu from the “Function Library.” Otherwise, you can type = in a cell and a handy drop-down menu will allow you to pick a function.

The wizard tells you what arguments you need to provide for each function. It also provides a link to online instructions if you need help understanding what the function does and how to use it. For example, if you type =sum into a cell, the in-line wizard shows you what arguments are required for the SUM function.

When you type a function, the wizard is inline or right at your fingers. When you select a function from the “Formulas” menu, the wizard is a pop-up box. Here is the pop-up wizard for the SUM() function.

For our first function, let’s use SUM(), which adds a list of numbers.

Suppose we have this spreadsheet to contain plans for budgeting your family’s vacation:

To calculate the total costs you could write =b2+b3+b4+b5 but it’s easier to use the SUM() function.

In Excel, look for the symbol Σ at the top left-hand corner of the Excel screen to find the AutoSum button (mathematicians use the Greek letter Σ for adding a series of numbers).

If the cursor is below the family budget numbers, Excel is smart enough to know that you want to sum the list of numbers above where you placed the cursor, so it highlights the numbers.

Press “enter” to accept the range selected by Excel or use the cursor to change which cells are selected.

If you look at what Excel put into the spreadsheet you can see that it wrote this function:

In this formula, Excel sums the numbers from B2 to B9. Note, we left some room below row 5 so that you could add to the family vacation budget – the cost will certainly go up as the kids list of what they want to do and where they want to go grows longer!

Math functions do not work with letters, so if you put letters into the column the result is shown as “#NAME?” as shown below.

#NAME? indicates that there is some kind of error. It could be any number of things including:

bad cell reference using letters in math functions omitting required arguments spelling function name wrong illegal math operations like division by 0

The easiest way to select the arguments in a calculation is to use the mouse. You can add to or remove from the list of arguments to the function by enlarging or making smaller the box that Excel draws when you move the mouse or click in another cell.

We have clicked on the top of the square drawn by Excel to take “airline tickets” out of the budget. You can see the cross-hair symbol that you can draw to make the selected range larger or smaller.

Press “enter” to confirm the results.

Calculation Operators

There are two types of operators: math and comparison.

There are other operators not related to mathematics like “&” which means concatenate (join end-to-end) two strings. For example, =“Excel” & “ is Fun” equals “Excel is Fun”.

Now we look at comparison operators.

As you can see above, comparison operators work with numbers and text.

Note, if you enter =”a”>”b” into a cell it will say “FALSE” since “a” is not greater than “b.” “b” comes after “a” in the alphabet, so “a” > “b” or “b” > “a.”

Operator Order Precedence

Order precedence is an idea from mathematics. Excel has to follow the same rules as mathematics. This topic is more complicated, so take a breath and let’s dive in.

Order precedence means the order in which the computer calculates the answer. As we explained in Lesson 1, the area of a circle is πr2, which is the same as π * r * r. It is not (πr)2.

So you have to understand the order precedence when you write a formula.

Generally, you can say this:

Excel first evaluates items in parentheses working inside out. It then uses the order precedence rules of mathematics. When two items have the same precedence, Excel works left to right.

The precedence of math operators is shown below, in descending order.

There are other precedence rules related to strings and reference operators. For the moment, we will just stick with what we just covered. Now, let’s look at some examples.

Example: Calculating the area of a circle

The area of a circle is =PI() * radius ^ 2.

Looking at the table above we see that exponents comes before multiplication. So the computer first calculates radius ^ 2 and then it multiples that result by Pi.

Example: Calculating a raise in salary

Let’s say your boss decides you’re doing a great job and he or she is going to give you a 10% raise! How would you calculate your new salary?

First, remember that multiplication comes before addition.

Is it =salary + salary * 10% or is it =salary + (salary * 10%)?

Suppose your salary is $100. With a 10% raise, your new salary will be:

= 100 + 100 * 10% = 100 + 10 = 110

You can also write it like this:

=100 + (100 * 10%) = 100 + 10 = 110

In the second case, we have make the order of precedence explicit by using parentheses. Remember that parentheses are evaluated before any other operation.

By the way, the easier way to write this is = salary * 110%

Parentheses can be nested inside one another. So, when we write (3 + (4 * 2)), working from inside to outside, first calculates 4 * 2 = 8, then add 3 + 8 to get 11.

A few more examples

Here is another example: = 4 * 3 / 2. What is the answer?

We see from the rules in the table above that * and / have equal precedence. So Excel works from left to right, 4 * 3 = 12 first, then divides that by 2 to get 6.

Again you could make that explicit by writing = (4 * 3) / 2

What about = 4 + 3 * 2?

The computer sees both * and + operators. So following the rules of precedence (multiplication comes before addition) it calculates 3 * 2 = 6 first, then adds 4 to get 10.

If you wanted to change the order of precedence you would write = (4 + 3) * 2 = 14.

What about this one = -1 ^ 3?

Then answer is -3 because the computer calculated = (-1) ^ 3 = -1 * -1 * -1 = -1.

Remember that negative times negative is positive and a negative times a positive is negative. You can see this like this (-1 * -1) * -1 = 1 * -1 = -1.

So there’s a few examples of mathematical order and precedence, we hope that helps clear a few things about how Excel performs calculations (and that’s probably enough math to last a lifetime for some of you).

Example: Function Loan Payment (PMT)

Let’s look at an example to calculate a loan payment.

Start by creating a new worksheet.

Format the numbers with dollar signs and use zero decimal places since we are not interested in cents right now because they do not matter much when you are talking about dollars (in the next chapter we explore how to format numbers in detail). For example, to format the interest rate, right-click on the cell and click “format cells.” Pick percentage and use 2 decimal places.

Similarly, format the other cells for “currency” instead of percentage and pick “number” for the loan term.

Now we have:

Add the SUM() function to “total” monthly expenses.

Note, the mortgage cell is not included in the total. Excel does not know that you want to include that number, since there is no value there. So be careful to extend the SUM() function to the top either by using the cursor or typing E2 where it says E3 to include the mortgage in the sum.

Put the cursor in the payment cell (B4).

On the Formulas menu select the drop-down “Financial” and then select the PMT function. The wizard pops up:

Use the cursor to select the “rate.”,“nper” (loan term), “Pv” (“present value” or loan amount). Notice that you have to divide the interest rate by 12 since interest is calculated monthly. Also you need to multiply the loan term in years by 12 to get the loan term in months. Press “OK” to save the result in the spreadsheet.

Notice that the payment is shown as a negative number: -1013.37062. To make it positive and add it to the monthly expenses, point to the mortgage cell (E2). Type “=-” then use the cursor to point to the payment field. The resulting formula is =-B4.

Now the spreadsheet looks like this:

Your monthly expenses are $1,863 – Ouch!

Example: Text Function

Here we demonstrate how to use functions inside a formula and text functions.

Suppose you have a list of students as shown below. The first and last name is in one field separated by a comma. We need to put the last and firm names into separate cells. How do we do this?

To tackle this problem you need to use an algorithm – i.e., a step-by-step procedure for doing this.

For example, look at “Washington, George.” The procedure to split that into two words would be:

Calculate the length of the string. Find the position of the comma (this shows where one word ends and the other begins). Copy the left-hand side of the string up until the comma. Copy the right-hand side of the string from the comma to the end.

Let’s discuss how to do this with “George Washington” step-by-step in Excel.

Calculate the length of the string with the function =LEN(A3) – the result is 18. Now find the position of the comma by entering this function =FIND(“,”,A3”) – the result is 11. Now take the left-hand side of the string up until the comma and create this nested formula using the result from Step 1: =LEFT(A3,FIND(“,”,A3)-1). Note, we have to subtract 1 from the length because FIND gives the position of the comma.

Here is what that all looks like when all the functions are placed together in a formula. In cell B3, you can see this formula takes all the information from cell A3 and inputs “Washington” into it.

So we have “Washington,” now we need to get “George.” How do we do this?

Note, that we could have saved the result from Step 1 in a cell by itself, say, B6, then write a simpler formula =LEFT(A3,B6-1). But that uses up one cell for the intermittent step.

Remember the position of the comma or calculate it again. Calculate the length of the string. Count the characters from the end of the string to the comma.

Take the number of characters from Step 3 and subtract one to omit the comma and space.

Let’s do this step-by-step.

From above, this is =FIND(“,”,A3”) The length of the string is =LEN(A3) You will need to use some math to find the number of characters to take: =LEN(A3) – FIND(“,”,A3) – 1 The right-hand side of the string we want is =RIGHT(A3,LEN(A3) – FIND(“,”,A3) – 1)

Your spreadsheet should now look similar to the screenshot below. We copied the formulas as text into the bottom of the spreadsheet to make it easier to read and see.

That one was a little difficult but you only need to write these formulas once.

Coming up Next …

This concludes our lesson for today. You should have a fairly firm understanding now of formulas and functions, rows and columns, and the way this all can be employed through several definite examples.

Coming up next in Lesson 3, we will discuss cell reference and formatting as well as moving and copying formulas so you don’t have to rewrite each formula over and over again!