You are on page 1of 1

Important functions:

Addition:

=9+9+2+5
=a1+b1+c3+5
=sum(a2:e2)
=sum(a2:e2,B2:B4)
=sum(a1,b9,c10)
Subtraction:
=98-23
=c2-b3
Product:
=9*8*2*3
=B2*C2*D2*E4
=PRODUCT(B2:D2)
=PRODUCT(B2,C9)
=PRODUCT(B2:B9,C3:C5)
DIVISION:
= 98/23
=B2/D3
LCM:
=lcm(4,6,8)
=lcm(b2:d2)
=lcm(b2,c3,d6)
HCF:
=gcd(25,4)
=gcd(b2,b9)
AVERAGE:
=average(8,12,78,15,46,98)
=average(b2:b9)
Cell Counting(numeric cell):
=count(a1:d10)
Cell Counting(text cell):
=counta(a1:d10))
Cell counting(counts
particular text)
=countif(b1:f1,"P")
Add particular value:
=sumif(Range1,"criteria",Range2)
Range1- Searching range
Criteria-Condition
Range2-sum range
Square Root:
=sqrt(7)
=sqrt(b3)

Power(an)
=power(base,power)
=power(2,3)
=power(b2,c2)
Round figure :
=round(number,
decimalplaces)
=round(23.26,0) :23
=round(345.666667766566,2) :
345.67

You might also like