Download as xlsx, pdf, or txt
Download as xlsx, pdf, or txt
You are on page 1of 6

#NAME?

#NAME?
EXCEL GYAN
Add EXTRA SKILLS TO YOUR PROFESSIONAL CAREER

VALUE RELATED FUNCTIONS


MAX:
Returns largest value in a given range
Syntax: MAX(Range)
Example:
5 MAX(K13:K17)
2 8
8
1
3

MIN:
Returns smallest value in a given range
Syntax: MIN(Range)
Example:
5 MIN(K13:K17)
2 1
8
1
3

LARGE:
Returns K-th largest value in a given range ex:3rd largest number
Syntax: LARGE(Array,k)
Example:
5 LARGE($K$33:$K$37,2)
2 5
8
1
3
SMALL:
Returns K-th smallest value in a given range ex:3rd smallest number
Syntax: SMALL(Array,k)
Example:
5 SMALL($K$43:$K$47,4)
2 5
8
1
3

ROW:
It returns the row number of a reference
Syntax: ROW([Reference])
Example:
100 ROW(Z100)

COLUMN:
It returns the column number of a reference
Syntax: COLUMN([Reference])
Example:
2 COLUMN(B1)

RANK:
It returns the rank of a number in a range relative to another number
Syntax: RANK(Number,ref,[Order])
Example:
12 3 RANK(K65,$K$65:$K$69)
20 1
8 5
17 2
11 4

CHAR
It returns the character assign to the code specified.
Syntax: CHAR(Number)
Example:
65 A CHAR(K75)
CODE
It returns the code assigned to the character specified.
Syntax: CHAR(Number)
Example:
Z 90 CODE(K81)

You might also like