Monday, February 24, 2020

LARGE Function in Excel with Example


LARGE ()

This function examines a list of values and picks the value at a user specified position in the list.

Best view in desktop mode.


A
B
C
D
E
F
1
Values





2
120

Highest Value
1250
=LARGE(A2:A7,1)
3
800

2nd Highest Value
800
=LARGE(A2:A7,2)
4
100

3rd Highest Value
250
=LARGE(A2:A7,3)
5
120

4th Highest Value
120
=LARGE(A2:A7,4)
6
250

5th Highest Value
120
=LARGE(A2:A7,5)
7
1250





8








Syntax

=LARGE(ListOfNumbersToExamine,PositionToPickFrom)





Formatting

No special formatting is needed.



Example

The following table was used to calculate the top 3 sales figures between Jan, Feb and Mar.

A
B
C
D
E
1
Sales
Jan
Feb
Mar

2
North
$           5,000
$           6,000
$           4,500

3
South
$           5,800
$           7,000
$           3,000

4
East
$           3,500
$           2,000
$          10,000

5
West
$          12,000
$           4,000
$           6,000

6





7
Highest Value
$          12,000
=LARGE(B2:D5,1)
8
2nd Highest Value
$          10,000
=LARGE(B2:D5,2)
9
3rd Highest Value
$           7,000
=LARGE(B2:D5,3)
10










                       




No comments:

Post a Comment