Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Cell Address of a Maximum Value.
Written by Allen Wyatt (last updated January 4, 2025)
This tip applies to Excel 97, 2000, 2002, and 2003
Barry has a worksheet with 65,000 rows. They are unsorted and must remain unsorted. He can use the MAX function on the column and get the maximum value in that column. However, he also wants to know the address of the first cell in the column that contains this maximum value.
There are a number of ways that you can determine the address of the maximum value. One way is to use the ADDRESS function in conjunction with the MAX function, in the following manner:
=ADDRESS(MATCH(MAX(A:A),A:A,0),1,4)
The MATCH function is used to find where in the range (column A) the maximum value resides, and then the ADDRESS function returns the address of that location. A shorter version of the macro leaves off the ADDRESS function, instead being "hardwired" to return an address in column A:
="A"&MATCH(MAX(A:A),A:A,0)
Still another way to get the desired address is with a formula such as this:
=CELL("ADDRESS",INDEX(A:A,MATCH(MAX(A:A),A:A,0)))
This formula uses the CELL function, in conjunction with INDEX, to return the address of the cell that matches the maximum value in the column.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3818) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Cell Address of a Maximum Value.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
When you create references to cells in other workbooks, Excel, by default, makes the references absolute. This makes it ...
Discover MoreYou can easily sum a series of values in Excel, but it is not so easy to sum the absolute values of each value in a ...
Discover MoreExcel is often used to analyze data collected over time. In doing the analysis, you may want to only look at data ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments