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”))