0% found this document useful (0 votes)
56 views

Excel Formulai PDF

This document describes various Excel formulae used to perform calculations on data in a given cell range. It includes formulae to add, find maximum and minimum values, count entries, calculate averages, use conditional logic, round decimals, concatenate text, convert case and use multiple if conditions.

Uploaded by

moeen khalid
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views

Excel Formulai PDF

This document describes various Excel formulae used to perform calculations on data in a given cell range. It includes formulae to add, find maximum and minimum values, count entries, calculate averages, use conditional logic, round decimals, concatenate text, convert case and use multiple if conditions.

Uploaded by

moeen khalid
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Excel Formulae

=sum(A1:A4)

Use to add the numbers in the given range

=max(A1:A4)

Use to find the maximum number in the given range

=min(A1:A4)

Use to find the minimum number in the given range

=count(A1:A4)

Use to count the number entries in the given range

=countif(A1:A4, “A”)

Use to count the number of entries of a specific number/alphabet in the given range

=average(A1:A4)

Use to calculate the average of numbers in the given range

=if(Condition, True, False)

Use for calculation in conditional structure

=round(7.394398934, 2)

Use to round off a decimal number upto a specific decimal point

=concatenate(a1, b1, c1)

Use to concatenate/combine the Text data written in different excel cells

=upper(a1)

Convert the text into upper case

=lower(a1)

Convert the text into lower case

Multiple if structure
=if(a1>=35, “Summer”, if(a1>=20, “Normal”, “Winter”))

=if(a1<=20, “Winter”, if(a1<=35, “Normal”, “Summer”))

You might also like