finding row of maximum number

birdman

Board Regular
Joined
Oct 11, 2005
Messages
187
in cell C1 i would like to find the row of the maximum number in column B . for example, if the maximum number in column B is located in B200, i would like C1 to have a value of 200. does anyone know the formula to do this?? thanks for any help in advance.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
How about something like this:

=MATCH(MAX(B:B),B:B,0)

It will only find the 1st one in the event of a tie.
 
Upvote 0
Similar question

I want to do almost the same thing. I want to check column B for the highest value, but also return the corresponding value in column A, which has the date the highest value occurred.
Thanks.
 
Upvote 0
Try this:

=INDEX(A:A,MATCH(MAX(B:B),B:B,0))

Again, the 1st occurrence will be used in the event of a tie.
 
Upvote 0

Forum statistics

Threads
1,214,912
Messages
6,122,204
Members
449,072
Latest member
DW Draft

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