Lesson-11-Math-Formulas
Lesson-11-Math-Formulas
12.2
12.9
-12.2
=Rand() 0.634388462570823
Returns a random number between 0 and 1. It
=Rand() 0.457265741206556 changes when ever there is any calculation or when
F9 is pressed
=Rand() 0.828820526513462
=Rand() 0.240918407488474
Data Used in Formula
100
1000
=RANDBETWEEN(A2,A3) 301
Returns a random number between the specified
=RANDBETWEEN(100,1000) 900 limits. It changes when ever there is any calculation or
when F9 is pressed
=RANDBETWEEN(2,20) 16
=RANDBETWEEN(-100,0) 0
Formula Result Commentary
=ROUND(500.51,1) 500.5 Rounds to 1 decimal place
=ROUND(500.55,1) 500.6 Rounds to 1 decimal place
=ROUND(500.55,0) 501 Rounds to 0 decimal place
=ROUND(500.55,-1) 500 Rounds to -1 decimal place
=ROUND(500.55,-3) 1000 Rounds to -3 decimal place
Data Used in Formula
10
20
30
Adds the values for all the names that have the
=SUMIF(A2:A5,"*a*",B2:B5) 600
alphabet "a" in it (200+400)
Data Used in Formula
Tom 100
Jane 200
Arjun 400
Tom 700
=SUMIFS(B2:B5,A2:A5,"<>Tom", Adds the values for all the names are not equal to
400
B2:B5,">200") "Tom" and whose sales are more than 200
Data Used in Formula
1 5 10
2 6 11
3 7 12
4 8 13