There Are Some Important Functions of Excel
There Are Some Important Functions of Excel
References do not need to be next to one another. For example, to sum the cost
of apples, bananas, and kiwis only, you can use a formula like this:
Example: =ROUND(2.15, 1)
2.2
IF Function: The IF function can perform a logical test and return one value for a
TRUE result, and another for a FALSE result.
Syntax: =TODAY ()
SMALL Function: The Excel SMALL function returns numeric values based on
their position in a list ranked by value. In other words, it can retrive "nth smallest"
values - smallest value, 2nd smallest value, 3rd smallest value, etc.
Example: =SMALL(A1:A5, 1)
Result: -2.3
PROPER Function: The Excel PROPER function capitalizes words given text
string. Numbers and punctuation are not affected.
Examples: =PROPER("excel")
Result: "Excel"
Result: 8.85
HLOOKUP Function: HLOOKUP is an Excel function to lookup and retrieve
data from a specific row in table. The "H" in HLOOKUP stands for "horizontal",
where lookup values appear in the first row of the table, moving horizontally to
the right. HLOOKUP supports approximate and exact matching, and wildcards
(* ?) for finding partial matches.
Example: =HLOOKUP("*",range,1,FALSE)
SUMIF Function: The Excel SUMIF function returns the sum of cells that
supplied criteria. Criteria can be applied to dates, numbers, and text using logical
operators (>,<,<>,=) and wildcards (*,?) for partial matching.
COUNT Function: The Excel COUNT function returns the count of values that
are numbers, generally cells that contain numbers. Values can be supplied as
constants, cell references, or ranges.
Example:=HYPERLINK("#"&CELL("address",INDEX(C5:C100,MATCH(9.9
9E+307,C5:C100)+1)),"First blank")
AND Function: The Excel AND function is a logical function used to require
more than one condition at the same time. AND returns either TRUE or FALSE.
Example: =AND(A1>0,A1<5)
Example: =OR(A1>75,B1>75)
MAX Function: The Excel MAX function returns the largest numeric value in a
range of values.
Syntax: =MAX (number1, [number2], ...)
Example: =MAX(5,10)
=MAX(A1,A2,A3)
-MAX(A1:A10)
MIN Function: The Excel MIN function returns the smallest numeric value in a
range of values.
Example: =MIN(5,10)
=MIN(A1,A2,A3)
-MIN(A1:A10)
DAY Function: The Excel DAY function returns the day of the month as a
number between 1 to 31 from a given date.
TIME Function: The Excel TIME function is a built-in function that allows you
to create a time with individual hour, minute, and second components. The TIME
function is useful when you want to assemble a proper time inside another
formula.
=TIME(0,3,0) // 3 minutes
=TIME(0,0,3) // 3 seconds