Excel-Formulas and Functions
Excel-Formulas and Functions
4. FACT(Num)
(e.g) = fact(3) = 1*2*3 = 6
5. SQRT(Num)
(e.g) = sqrt(25) = 5
STATISTICAL FUNCTIONS
1. AVERAGE(Num1,Num2,…..)
(e.g) average(A1:A5)
2. COUNT (Value1, Value2,….) Returns no. of cells having numbers in a range
of cells.
(e.g) =count ( a1:b10)
3. MAX(Num1,Num2,…..)
(e.g) = max(b10:b25)
4. MIN(Num1,Num2,…..)
(e.g) = min(a5:a30)
DATE AND TIME FUNCTION
1. TODAY( ) - Returns current date
3. DAYS360(“starting date string”, ”ending date string”) – Returns the no. of days
passed between the two dates based on a 360 day/year.
This function can be used to calculate the no. of days you lived. Here you need to
enter your birthdate as the starting date and current date as the ending date.
TEXT FUNCTIONS
1. Left(“text”, no. of characters)
2. Right(“text”, no. of characters)
3. Mid(“text”, start number, no. of characters)
4. Lower(“text”)
5. Upper(“text”)
6. Len(“text”)
LOGICAL FUNCTIONS
1. AND(logical condition1,logical condition2,…logical condition n)
2. OR(logical condition1,logical condition2,…logical condition n)
3. NOT(logical test )
4. IF(logical test, value if true, value is false)
(e.g) = IF( C40>= 210,”Passed”,”Failed”)
= IF( B2>= 10000,B2*12/100,B2*11/100)
5. SUMIF(Range, Criteria, Sum range)
- Range is the range of cells that you wish to evaluate
- Criteria is the condition based on which the cells will be added
- Sum range is the actual cells to sum
(e.g) = Sumif (c6:c17,”Sajna”, g6:g17)
6. COUNTIF(range,criteria) - counts the no. of cells within a range that meets a given
criteria.
(e.g) = countif(g6:g17, “>15000”)