You are on page 1of 3

AMIRAS COMPUTER EDUCATION

#316, St. No. 3, Pritam Nagar, Back Side Chander Nagar, Ludhiana Mobile: 90239-81745
MAIN LIBRARY FUNCTIONS USED IN ADVANCE EXCEL
S.No. Function Name Details Result
1 ABS Converts Negative Value to Positive
=ABS(-46) 46
2 AVERAGE Show the average to given series
=AVERAGE(45,56,67,78,95,62,17,73,98) 65.66666667
=AVERAGE(A2,B2,C2,D2,E2,F2,G2,H2) 60.5
=AVERAGE(A2:H2) 60.5
3 CONCATENATE To combine two or more values
=CONCATENATE(A2,B2) SoniaSharma
=CONCATENATE(LEFT(A2,2),RIGHT(B2,2)) Soma
4 COS shows cos of the given number
=COS(45) 0.525321989
5 COUNT Counts the numbers in the series
=COUNT(45,56,67,78,95,62,17,73,98) 9
=COUNT(A2,B2,C2,D2,E2,F2,G2,H2) 8
=COUNT(A2:H2) 8
6 DAYS360 Shows the difference between two dates according to 360 days
in a year
=DAYS360("25/07/1981","09/03/2023") 14984
7 EVEN Shows even values only
=EVEN(47) 48
=EVEN(66) 66
8 EXACT To check whether two values are same/not
=EXACT(A2,B2) FALSE
=EXACT("KIRAN","RADHA") FALSE
=EXACT("KIRAN","kiran") FALSE
=EXACT("KIRAN","KIRAN") TRUE
9 FACT Show factorial number e.g. 5x4x3x2x1=120
=FACT(5) 120
10 INT Show integer value without decimal
=INT(68.97) 68
11 ISBLANK Checks any cell for blank/not
=ISBLANK(A2) FALSE
12 ISTEXT Checks any cell for text/not
=ISTEXT(A2) FALSE
13 ISNUMBER Checks any cell for number/not
=ISNUMBER(A2) TRUE
14 LEFT Shows specified text from the left side
=LEFT(A2,4) MAHI
15 LEN Show the length of a text
=LEN("RAJNI") 5
=LEN("RAJNI SHARMA") 12
16 LOG show log values
=LOG(26) 1.414973348
17 LOWER Convert Capital letters in to lower case
=LOWER("WELCOME") welcome
AMIRAS COMPUTER EDUCATION
#316, St. No. 3, Pritam Nagar, Back Side Chander Nagar, Ludhiana Mobile: 90239-81745
MAIN LIBRARY FUNCTIONS USED IN ADVANCE EXCEL
S.No. Function Name Details Result
18 MAX Shows Maximum value from the given series
=MAX(45,56,67,78,95,62,17,73,98) 98
=MAX(A2,B2,C2,D2,E2,F2,G2,H2) 90
=MAX(A2:H2) 90
19 MEDIAN Shows median of given two numbers
=MEDIAN(1,5) 3
=MEDIAN(1,10) 5.5
20 MID Shows specified text from the middle
=MID(A2,3,4) HIND
21 MIN Shows Minimum value from the given series
=MIN(45,56,67,78,95,62,17,73,98) 17
=MIN(A2,B2,C2,D2,E2,F2,G2,H2) 34
=MIN(A2:H2) 34
22 MOD Shows Remainder of given two value
=MOD(22,5) 2
23 NOW Shows current date and time
=NOW() 44995.33048
24 ODD Show odd values only
=ODD(36) 37
=ODD(77) 77
25 POWER Show Raised power of given two values
=POWER(5,2) 25
=POWER(3,4) 81
26 PRODUCT Shows Multiplication of two numbers
=PRODUCT(5,7,2,3,5,4,9) 37800
=PRODUCT(A2,B2,C2,D2,E2) 447763680
=PRODUCT(A2:E2) 447763680
27 REPLACE Replace specified text with given values (sonia)
=REPLACE(A2,1,1,"M") Monia
28 REPT Repeats any text in a row
=REPT("Abc",5) AbcAbcAbcAbcAbc
29 RIGHT Shows specified text from the right side
=RIGHT(A2,5) INDER
30 SIGN Shows Positive/Negative/None values
=SIGN(65) 1
=SIGN(-24) -1
=SIGN(0) 0
31 SUM Calulates the Total of given series
=SUM(45,56,67,78,95,62,17,73,98) 591
=SUM(A2,B2,C2,D2,E2,F2,G2,H2) 484
=SUM(A2:H2) 484
32 SQRT To find the Square Root of the given number
=SQRT(25) 5
=SQRT(64) 8
33 SIN Shows Sin of the given number
=SIN(60) -0.304810621
AMIRAS COMPUTER EDUCATION
#316, St. No. 3, Pritam Nagar, Back Side Chander Nagar, Ludhiana Mobile: 90239-81745
MAIN LIBRARY FUNCTIONS USED IN ADVANCE EXCEL
S.No. Function Name Details Result
34 TAN shows Tan of the given number
=TAN(90) -1.995200412
35 TODAY Shows Current Date
=TODAY() 44995
36 TRIM Removes extra space from the text
=TRIM("WELCOME FRIENDS") WELCOME FRIENDS
37 TYPE Shows the type of data i.e. Number=1/Text=2 etc.
=TYPE(A5) 1
38 UPPER Convert lower letters in to Capital case
=UPPER("welcome") WELCOME
39 IF Shows results according to given condition
=IF(K2>=33,"PASS","FAIL") PASS

=IF(K2>=70,"FIRST",IF(K2>=50,"SECOND",IF(K2>=33,"THIRD","FA
IL"))) SECOND
40 AND Shows result if all conditions met true
=IF(AND(A8>=33,B8>=33,C8>=33),"PASS","FAIL") PASS
41 OR Shows result if minimum one/more conditions met true
=IF(OR(A8>=33,B8>=33,C8>=33),"PASS","FAIL") FAIL
42 NOT To Check whether one value is not equal to another
=IF(NOT(C8>=33),"FAIL","PASS") PASS
43 VLOOKUP To look up a value from a Vertical List and returns specified
results
=VLOOKUP(H3,$A$3:$B$7,2,FALSE)
44 HLOOKUP To look up a value from a Horizontal List and returns specified
results
=HLOOKUP(H3,$A$3:$B$7,2,FALSE)
45 CONVERT Converts the value from one measurement unit to another
=CONVERT(5,"m","in") 196.8503937
46 ROUND Returns a number rounded to a given number of digits
=ROUND(45.77,1) 45.8
47 COUNTIF Counts the number of cell that meets a creteria
=COUNTIF(A2:H2,">33") 8
48 SUMIF To sum the values in a range that meets creteria that you specify

=SUMIF(A2:H2,">=33") 484
49 SUMIFS Sums all of its arguments that meets multiple creteria
=SUMIFS(A2:H2,A3:H3,">=33")
50 NETWORKDAYS.INTL Returns the number of whole workdays between two dates
using parameters to indicate which and how many days
are weekend days
=NETWORKDAYS.INTL("15/03/2021","09/03/2023",1) 519

You might also like