Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
hilbert
 
Posts: n/a
Default getting the number of the row with the maximum value

i have a a column with values, by using a macro i want to get the number of
the row in which the maximum value of the column is.
  #2   Report Post  
Duke Carey
 
Posts: n/a
Default

Are you sure you want to do it by macro?

First you'd use the MAX() function to find the largest value. Now, if you
want to do this by macro (presumably to SELECT the cell containing the
largest value), you'd use the Find command.

I'm assuming your values are in a range named 'rngValues'

Dim r As Range
Set r = Range("rngValues")
r.Find(WorksheetFunction.Max(r)).Select

If you don't need a macro, then you'd use the MATCH() function to find the
relative position of that MAX value in the list.

=MATCH(MAX(rngValues),rngValues)

If your data starts in any row but the first, you'll have to convert the
relative position to a row #. Do this by adding a value to the MATCH() equal
to the number of rows down the sheet your range starts. Thus, if your data
starts in row 2, then the data starts one row from the top and the formula
needs to be

=MATCH(MAX(rngValues),rngValues)+1

Duke

"hilbert" wrote:

i have a a column with values, by using a macro i want to get the number of
the row in which the maximum value of the column is.

  #3   Report Post  
P Sitaram
 
Posts: n/a
Default

=ROW(INDEX(A1:A100,MATCH(MAX(A1:A100),A1:A100,0)))

  #4   Report Post  
Bernie Deitrick
 
Posts: n/a
Default

hilbert,

Dim myRng As Range
Set myRng = Range("A:A")
With Application.WorksheetFunction
MsgBox .Match(.Max(myRng), myRng, False)
End With

or with a formula:

=MATCH(MAX(A:A),A:A,FALSE)

HTH,
Bernie
MS Excel MVP


"hilbert" wrote in message
...
i have a a column with values, by using a macro i want to get the number

of
the row in which the maximum value of the column is.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Maximum Number of Cell Formats Jim Allen Excel Discussion (Misc queries) 4 April 19th 05 07:07 PM
maximum number of spreadsheets in one workbook Hoosier Refiner Excel Discussion (Misc queries) 2 April 2nd 05 08:16 PM
Is there a maximum number of non-contiguous columns that can be h. Harold Excel Discussion (Misc queries) 6 March 1st 05 09:10 PM
how to increase maximum number of columns in excel 2003 [email protected] Excel Discussion (Misc queries) 1 January 16th 05 08:13 PM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM


All times are GMT +1. The time now is 06:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"