Using cell row number returned by ADDRESS function in a calculation

TAS01

New Member
Joined
Oct 11, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am using the ADDRESS function to return the location of the smallest number in a column of data:

=ADDRESS(MATCH(MIN(K2:K4000),K2:K4000,0),COLUMN(K2)).
Returns $K$267

I now want to use the returned row number, 267, in a separate mathematical calculation. I tried adding the ROW() function to the above to get the 267 but that did not work.

How can I get the 267 as a number which I can use?
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
How about
Excel Formula:
=--textafter(a2,"$",-1)
Where A2 is the cell with your formula
 
Upvote 0
You don't need address. Try this:

=ROW(INDEX(K2:K4000,MATCH(MIN(K2:K4000),K2:K4000,0)))
 
Upvote 0

Forum statistics

Threads
1,215,124
Messages
6,123,189
Members
449,090
Latest member
bes000

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