Member-only story

20 Useful Excel Functions for Data Analysis

Ankit Anshu
5 min readMar 26, 2022

--

Photo by Luke Chesser on Unsplash

Microsoft Excel is an easy and powerful tool for data analysis. Excel is a widely used software application in industries today, built to generate reports and business insights. Excel contains over 450 functions, with more functions added every year. Here we cover those functions that are mostly used in data analysis.

MAX/MIN

The MAX and MIN functions are just what the names imply. MAX will find the largest number in a range, while MIN finds the lowest number in a range.

The formula for this Excel function is:

=MAX(number1, [number2], …)

MAX Function

The formula for this Excel function is:

=MIN(number1, [number2], …)

MIN Function

IF

The IF function tests a condition, and then reacts differently depending on whether the test was true or false.

The formula for this Excel function is:

=IF(test, value_if_true, value_if_false)

IF Function

IFS

The IFS function checks whether one or more conditions are met, and returns a value that corresponds to the first TRUE condition.

The formula for this Excel function is:

=IFS([Something is True1, Value if True1,Something is True2,Value if True2,Something is True3,Value if True3)

IFS function

SUM

The SUM function, as the name suggests, gives the total of the selected range of cell values. It performs the mathematical operation which is addition.

--

--

Responses (10)

Write a response