StudySmarter Excel Course: Day 1 = Excel Formulas

Well, well, well, if it isn’t the part of the Microsoft Office suite we all love to hate. If you’ve ever felt personally victimised by MS Excel, I can relate. To prevent that from happening again, we’re offering this short and not-so-sweet crash course in Excel formulas and functions. You only need an Excel problem you want to solve and some patience. From addition and subtraction to dreaded IF formulas, here’s where it’s all at.

excel formulas - studysmarter magazine

Day One: Excel Formulas and Where to Find Them

Does the very thought of Microsoft Excel give you a headache? You’re not the only one. Just like MS Word, Excel can be a moody piece of software, but it’s an exceedingly useful tool for organising just about any amount of information. In our two-day course on Excel formulas and functions, we’ll try to find you a remedy for Excel ailments with a quick and easy overview of the most important features.

PS If the title of our crash course is anything to go by, Excel can be a whole suitcase full of unpredictable beasts that makes you want to smash your head against the keyboard in despair. Luckily enough, we know how to deal with that.

PPS All formulas in Excel start with an equation sign (=) followed by relevant cells and details. 

Excel at excellent universities!

Studying regularly and effectively makes a big difference at university. With our free teacher-reviewed explanations, tips, and revision schemes, you’re bound to make your mark!

Get started now

COUNT Formula in Excel

Name: COUNT

Use frequency: 5/5

Danger: 1/5

COUNT is a simple formula in Excel – it literally counts the number of cells in a selected range. It doesn’t include blank cells or ones with other data besides numbers.

To count in Excel, select the cell where you want the result. In the address bar, type the following:

=COUNT(X1:X35) – Press Enter and you’re done!

X stands for the cell range (the upper horizontal range marked with letters), and the numbers refer to the cell numbers from where you want to start counting to where you want to stop.

To count all information, including textual data, type =COUNTA(X1:X35). To include blank cells, type =COUNTBLANK(X1:X35).

SUM (Addition) and SUBTRACTION Excel Formulas

Name: SUM/SUBTRACTION

Use frequency: 3.5/5

Danger: 1/5

You can do simple addition of two or more cells by writing =A1+A3+A4 or using the SUM formula.

The SUM formula in Excel performs simple addition and calculates the total of the selected range of cells. Skip manual mathematics and pick a cell where you want the result. Then feed the address bar with the following:

=SUM(C1:C4) – Press Enter.

The function will calculate the sum total of the given range.

You can also add selectively with the following formula =SUM(C1+C4+C5) or calculate the sum total of a number of ranges with =SUM(C1-C5,D4:D16). Separate ranges by adding commas between them.

If you want to subtract any numbers, use =A5-A3-A16, etc.

There is no SUBTRACT function in Excel, so if you want a range, you will have to use SUM and add a minus (-) in front of the selected cells you want to subtract, i.e. =SUM(C15,-C12,-C4).

Excel Multiply Formula

Name: Multiplication

Real name: PRODUCT

Use frequency: 3/5

Danger: 3/5 for being crafty

Just like subtraction doesn’t have its own formula and piggybacks on the SUM, multiplication and division borrow from others. You can either do the good old =A5*A6, which can get quite dreary, especially if you have a lot of cells to consider, or you can try the following:

=PRODUCT(A1:A5) which will multiply the said range.

For more complex multiplication, you can add several ranges separated by a comma: =PRODUCT(A1:A5,C2:C4,F14:F16,B2,G1)

You can also multiply by a constant number by writing that number in a separate cell (best to add a blank somewhere, too, so you don’t forget) and adding the $ sign in front of it:

Here, the constant number is in A8, which is why we have $A$8.

You can also drag the formula down by selecting the first result cell and holding the left click until you’ve selected the range where you want the numbers multiplied by the constant number:

excel formulas - studysmarter magazine

Division Formula in Excel

Division works similarly to multiplication. You add / in the formula, e.g. =A4/A5. You can also select a constant number by adding $ in front of the cell reference.

If you don’t want your division to end up with a string of decimal numbers, you can write =QUOTIENT(B4,B3) to return the integer portion of a division or MOD(B4,B3) to return the remainder of the division. Notice the comma rather than slash in this case.

excel formulas - studysmarter magazine

Source

Excel Formulas That Just Do It Better

Let’s face it, addition and subtraction are pretty easy to understand, but unless maths is a part of your daily life, you’ve probably said goodbye to more complex mathematical calculations (I know I have). While you cannot always count on your calculator to help you out – especially if you’re dealing with endless Excel sheets –there are a few more formulas that can make your life easier.

The AVERAGE Formula in Excel

Name: AVERAGE

Use Frequency: Variable

Danger: 4/5, possible shapeshifter

Sometimes you need to find the average number of the selected range (as an administration-hating lecturer, I can promise you I hate calculating average grades, but Excel does help).

The basic idea is simple: =AVERAGE(C4:C15)

AVERAGE automatically excludes blank cells, but sometimes you might find it under the name AVERAGEIF, which looks kinda like this: =AVERAGEIF(B3:D3,”>0″), which will also exclude zeroes because the 0 specifies that you’re looking for values higher than zero.

You can calculate averages manually by typing =SUM(range)/COUNT(range).

Percentage Formula in Excel

I was never much of a fan of calculating percentages, especially in chemistry classes. Thankfully, I don’t have to do it anymore. Still, there may come a time you have to force your MS Excel to do it for you.

Name: Percentage

Use Frequency: 2/5

Danger: 4/5

You can calculate the percentage using the regular formula (part/whole)*100. In Excel, that looks like this:

=A2/A1

When you get the result, multiply it by 100 and you’ll get the percentage.

Alternatively, you can calculate the =A2/A1 and click CTRL+SHIFT+% or % on the Home tab to get the percentage of the calculated amount.

We offer more, for less. Way less.

Our all-in-one learning platform is completely free. Access teacher-verified explanations, flashcards with spaced repetition, and a study planner with analytics. At no cost to you. Not now, not ever.

Get started now

IF Formula in Excel

Name: IF

Use frequency 4/5

Danger: 55555555555555555555555555/5

There are some formulas that should be banned, right?

IF is used to specify conditions under which something is calculated, accepted, dismissed, or processed in any other way. There are two results of your IF statement: the first is TRUE if the conditions are met, and the second is FALSE.

=IF(C2=”Yes”,1,2)

This means that if C2 says YES, the formula returns to 1, and if not, it returns to 2.

=IF(C9=”Apple”,TRUE,FALSE)

You can combine IF with other formulas and functions:

=IF(A2>C4,Passed,Failed).

This means that if the value A2 (say a student’s points on the test) is higher than C4 (minimum points for a pass), the text will say Passed in the selected column. Otherwise, it will be marked as failed. Life is cruel sometimes.

excel formulas - studysmarter magazine

How Excel Formulas Scrambled My Brain

And with that, my young Padawan, we complete the first day of the two-day Excel crash course. Remember, Excel formulas are used to calculate anything and everything. They are always marked by = at the beginning, and, if you’ve written them correctly, give you the result when you press enter.

Remember, Excel tends to ignore blank spaces, so you need to specify if you need them included in the calculations.

In our next round of scrambling our brains with higher mathematics, we’ll deal with functions. In the meantime, take a break – you probably need one. I know I do 😉.

How do you add formulas in Excel?

To add any formula in Excel, select the cell where you want your result to be displayed and type = followed by the selected formula in the address bar. For example =COUNT(A1:A12).

How do you use Excel formulas?

Excel formulas are used for all sorts of calculations. To use them, you must select the cell where you want the result and add a formula in the address bar. The formula must specify the mathematical operation you want performed (SUM, COUNT, IF, etc.) and the cells in which you want this operation to be implemented.

How do you hide formulas in Excel?

To prevent a formula from showing in the address bar in Excel, select the cells you want the formula to be hidden in and select Format from the dropdown right-click menu. Go to the Protection tab in the pop-up window and check Hidden.