Typing Wordsformulas in Excel-1
Typing Wordsformulas in Excel-1
Formulas in Excel:
Choose a cell.
To enter an equal sign, click the cell and type =.
Enter the address of a cell in the selected cell or select a cell from
the list.
You need to enter an operator.
Enter the address of the next cell in the selected cell.
Press Enter.
EXCELL MATH FORMULAS
1. Multiplication formula manually with the ‘*’ operator.
Ex: =A2*B2
2. ‘PRODUCT’ to perform multiplication.
Ex:=PRODUCT(A2,B2).
3. The SUM() function. It performs the mathematical operation which
is addition.
Ex: =SUM(C2:C4).
4. The AVERAGE() function focuses on calculating the average of the
selected range of cell values.
Ex: =AVERAGE(C2:C4).
5. The function COUNT() counts the total number of cells in a range
that contains a number. It does not include the cell, which is blank,
and the ones that hold data in any other format apart from
numeric.
Ex: =COUNT(C1:C4).
6. The MOD() function works on returning the remainder when a
particular number is divided by a divisor.
Ex: MODULUS: =MOD(A2,NUMBER).
EXCELL FORMULAS
16. The TODAY() function in Excel provides the current system date.
Ex:=TODAY().
17. The function DAY() is used to return the day of the month. It will be
a number between 1 to 31. 1 is the first day of the month, 31 is the
last day of the month.
EX:=DAY(TODAY()).
18. The MONTH() function returns the month, a number from 1 to 12,
where 1 is January and 12 is December.
Ex:=MONTH(TODAY()).
19. The YEAR() function, as the name suggests, returns the year from a
date value.
Ex:=YEAR(TODAY()).
20. The TIME() function converts hours, minutes, seconds given as
numbers to an Excel serial number, formatted with a time format.
EX:=TIME().
21. The HOUR() function generates the hour from a time value as a
number from 0 to 23. Here, 0 means 12 AM and 23 is 11 PM.
Ex:=HOUR(NOW()).
22. The function MINUTE(), returns the minute from a time value as a
number from 0 to 59.
Ex:=MINUTE(NOW()).
23. The SECOND() function returns the second from a time value as a
number from 0 to 59.
EX:=SECOND(NOW()).
24. The MAX and MIN formulas in Excel get the largest and smallest
value in a set of numbers, respectively.
Ex: =MIN(A2),=MAX(A2).
25. TRIM() It will eliminate all extra spaces in cells but a single space
character between words.
Ex:=TRIM(A1).
EXCELL FORMULAS