Return the cell address for the first instance of a specific value

fraseringermany

New Member
Joined
Mar 25, 2013
Messages
1
Hello,

I need a formula that will give the cell address for the cell containing the first instance of a specific value.

So, if I have the below data, I would like a formula that has the cell address of the first instance of a value greater than 0.9 which in this case would be A5

any tips?

A
10.861899
20.873341
30.885011
40.893936
50.909039
60.916133
70.924371
80.93238

<colgroup><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"

CodeNinja

Well-known Member
Joined
Feb 18, 2013
Messages
644
If the data is all going to be in one column...

=ADDRESS(AGGREGATE(15,6,ROW(A1:A8)/(A1:A8>0.9),1),1)
 
Upvote 0

Gary's Student

Well-known Member
Joined
Aug 4, 2012
Messages
1,015
Consider the array formula:

="A" & MATCH(MIN(IF(A1:A8>0.9,A1:A8)),A1:A8,0)

Array formulas must be entered with CNTRL-SHFT-ENTER rather than just the ENTER key
 
Upvote 0

Rick Rothstein

MrExcel MVP
Joined
Apr 18, 2011
Messages
38,154
Office Version
  1. 2019
  2. 2010
Platform
  1. Windows
Same idea as Gary's Student, but a little more compact, also an array-entered formula...

="A"&MIN(IF(A1:A8>0.9,ROW(A1:A8)))

**Commit this formula using CTRL+SHIFT+ENTER and not just Enter by itself
 
Upvote 0

Forum statistics

Threads
1,195,952
Messages
6,012,509
Members
441,703
Latest member
clivelincoln

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
Top