Lowest/Highest Number Cells

audrey

Active Member
Joined
Jul 30, 2008
Messages
491
Hello,

I have a data listed from A1 to G1. What I want to do is

Check out all the numbers written in those cells, take the highest number among and write to the following cell (lets say A3)

also

Check out all the numbers written in those cells, take the lowest number among and write to the following cell (lets say A4)

Thank you in advance

Audrey
 
but this is already in the formula, I could not find the difference with the first one you wrote
 
Upvote 0

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
The red 2 shows which numeric value you want ie 35 for Item1 would be 1, 30 for Item2 would be 2, 16 for Item3 would be 3.

=LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),2)

It's just a standard Large formula - the INDEX/MATCH within just directs the Large to the particular column it sources its values from.

Make sense? Have I understaood what you wanted?
 
Upvote 0
yes I got tthat part and changed the formula accordingly. but my question was that, this formula you provided writes the cell, the item name (e.g item1) which was what I wanted initially. Thank you for that

But I also want to fill the next cell nearby the corresponding number that this item1 refers to.

for instance item1 (formula works) and 35 (the formula I am requesting) as it s the biggest line item.
 
Last edited:
Upvote 0
Which is what I gave:
Excel Workbook
ABCDEFGHIJKLM
1JanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecember
2101520351719812756411136
3Item13735
4Item22530
5Item35316
6
7
8
9
10
11
12
13Best Month
14JulyValueJanuaryValue
151Item135Item35
162Item230Item13
173Item316Item22
Sheet2
Excel 2003
Cell Formulas
RangeFormula
C15=INDEX($A$3:$A$5,MATCH(LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),$B15),INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),0))
C16=INDEX($A$3:$A$5,MATCH(LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),$B16),INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),0))
C17=INDEX($A$3:$A$5,MATCH(LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),$B17),INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),0))
D15=LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),$B15)
D16=LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),$B16)
D17=LARGE(INDEX($B$3:$M$5,0,MATCH(C$14,$B$1:$M$1,0)),$B17)
F15=INDEX($A$3:$A$5,MATCH(LARGE(INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),$B15),INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),0))
F16=INDEX($A$3:$A$5,MATCH(LARGE(INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),$B16),INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),0))
F17=INDEX($A$3:$A$5,MATCH(LARGE(INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),$B17),INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),0))
G15=LARGE(INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),$B15)
G16=LARGE(INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),$B16)
G17=LARGE(INDEX($B$3:$M$5,0,MATCH(F$14,$B$1:$M$1,0)),$B17)
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,500
Members
449,090
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top