How can I get the ROW number from a LARGE formula?

mcmuney

Board Regular
Joined
Sep 11, 2015
Messages
97
Office Version
  1. 365
How can I get the row number of the result from this formula:

Code:
=LARGE((MTD!$AA$18,MTD!$AA$20,MTD!$AA$41,MTD!$AA$71,MTD!$AA$89,MTD!$AA$101,MTD!$AA$103,MTD!$AA$105,MTD!$AA$107,MTD!$AA$111,MTD!$AA$113,MTD!$AA$101,MTD!$AA$133,MTD!$AA$154,MTD!$AA$168,MTD!$AA$212,MTD!$AA$220,MTD!$AA$226,MTD!$AA$233,MTD!$AA$244,MTD!$AA$251,MTD!$AA$256,MTD!$AA$262,MTD!$AA$291,MTD!$AA$296,MTD!$AA$301,MTD!$AA$306),C12)
 
Last edited:

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Try:
This is an array formula and must be entered with CTRL-SHIFT-ENTER.

Code:
=MIN(IF(MTD!$AA$18:$AA$306=LARGE((MTD!$AA$18,MTD!$AA$20,MTD!$AA$41,MTD!$AA$71,MTD!$AA$89,MTD!$AA$101,MTD!$AA$103,MTD!$AA$105,MTD!$AA$107,MTD!$AA$111,MTD!$AA$113,MTD!$AA$101,MTD!$AA$133,MTD!$AA$154,MTD!$AA$168,MTD!$AA$212,MTD!$AA$220,MTD!$AA$226,MTD!$AA$233,MTD!$AA$244,MTD!$AA$251,MTD!$AA$256,MTD!$AA$262,MTD!$AA$291,MTD!$AA$296,MTD!$AA$301,MTD!$AA$306),C12),ROW(MTD!$AA$18:$AA$306)-ROW(MTD!$AA$18)+1))
 
Upvote 0

Forum statistics

Threads
1,215,447
Messages
6,124,907
Members
449,194
Latest member
JayEggleton

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