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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
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
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
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,214,667
Messages
6,120,822
Members
448,990
Latest member
rohitsomani

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