Function:-
This option is displayed a list of function that allows you to calculate the number in the sheet with the help of this command. We can easily calculate the numbers and solve the mathematical problems as multiplication, subtraction, addition etc.
Curser Movement:-
Mathematical Functions:-
- (-) to subtract
- (+) to add
- (*) to multiply
- (/) to divide
- (>) greater than
- (>=) greater than equal to
- (<) less than
- (<=) less than equal to
Note; every function must be start with "-" sign and space should be done after "=" sign.
Some Important formulas:-
1. To calculate subtraction:-
=A1-B1(To subtract the value in the cell B1 from the value in cell A1)
2. To calculate addition:-
=A1+B1(t=To add the value in cell A1 and B1)
3. To calculate division:-
=A1/B6(To divide the value in A1 by B6)
4.To calculate multiplication:-
=A1*A3(To multiple the value in cell A1 by A3)
5. To calculate addition=sum:-
Calculate the total in a range of cells.
6. To calculate the average:-
= Average(A1:A10) calculate the mean or average of a group of number.
7. To calculate the maximum:-
=Max (A1:A15) returns the value in a range of cells.
8. To calculate the minimum:-
=Min (B1:B10) returns the value in a range of cells.
9. To calculate count:
=Count (A1:A10)
10. To calculate count blank:
=Count blank(A1:G1)
11. To calculate square root:-
Sqrt(A1)
12. To display current date and time:-
=now()
13. To calculate additional less than anyone number:-
=SUMIF(E1:E9,"<20")
14. To calculate additional greater than anyone number:-
=SUMIF(E1:E9,">20")
15. To calculate calculate multiplication a range of cells:-
=Product(B1:B9)
16. To change upper case:-
=upper("Sameer")
17. To change lower case:-
=lower("SAMEER")
18. To display current date:-
=today()
19. To combine two column's data on one column:-
=CONCATENATE(A1,"",B1)
0 Comments