Basic Microsoft Excel formulas

0

Microsoft Excel is an incredibly powerful tool for organizing, analyzing, and visualizing data. One of its key features is the ability to use formulas to perform calculations and manipulate data automatically. Whether you’re a student, professional, or just someone looking to streamline their workflow, understanding basic Microsoft Excel formulas can greatly increase your productivity.

SUM() – Adding numbers

The SUM() function is one of the most basic and commonly used formulas in Excel. As the name suggests, it allows you to add up a series of numbers in a range of cells.

=SUM(number1, number2, …) or =SUM(A1:A10)

Imagine you have a list of expenses for the month in cells A1 to A10. You can quickly calculate the total by using =SUM(A1:A10).

AVERAGE() – Calculating the mean

The AVERAGE() function returns the arithmetic mean of a group of numbers. This is useful for finding the central value of a dataset.

=AVERAGE(number1, number2, …) or =AVERAGE(B1:B10)

If you have a list of test scores, you can use AVERAGE() to determine the average score by inputting =AVERAGE(B1:B10).

COUNT() – Counting numbers

The COUNT() function counts the number of cells that contain numbers. This is useful when you need to know how many numerical entries are in a dataset.

=COUNT(value1, value2, …) or =COUNT(D1:D10)

If you want to count how many items were sold, and the quantity of sales is recorded in a range (say D1:D10), using =COUNT(D1:D10) will give you the total number of non-blank cells with numbers.

IF() – Conditional logic

The IF() function is one of Excel’s most versatile and powerful functions. It allows you to make logical comparisons between a value and what you expect. It returns one value if the condition is TRUE, and another value if the condition is FALSE.

=IF(logical_test, value_if_true, value_if_false)

Let’s say you want to mark students as either “Pass” or “Fail” based on a score. If the score is in E2, the formula =IF(E2>=50, “Pass”, “Fail”) will return “Pass” if the score is 50 or greater, and “Fail” otherwise.

VLOOKUP() – vertical Lookup

The VLOOKUP() function is used to search for a value in the first column of a range and return a value in the same row from a different column. It’s especially useful when working with large datasets.

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

If you have a table with product IDs in the first column and product prices in the second column, you can use VLOOKUP() to find the price of a product by looking up its ID. For example, =VLOOKUP(F1, A1:B10, 2, FALSE) would search for the value in F1 in column A, and return the corresponding price from column B.

These are just a few of the many functions that Excel offers, but mastering these basics can make a world of difference in how efficiently you work with data. Whether you’re calculating totals with SUM(), applying conditional logic with IF(), or searching for data with VLOOKUP(), these functions will help you automate and simplify tasks that would otherwise take a lot of manual effort.

Follow us on X @BeInTheKnow_UK