vlookup for repeating value

noa210

New Member
Joined
Nov 7, 2017
Messages
2
Hi,
I'm wondering if there is a way to use vlookup to return the minimum value from an arrey and not the first value.
For example:

order
date
1130
08/11/2017
1130
08/11/2017
1130
05/11/2017
1130
12/11/2017
1129
1129
10/11/2017
1129
06/11/2017
value
vlookup
<form name="text_form" id="gt-form" action="/" encType="application/x-www-form-urlencoded" method="post">required date </form>
1130
08/11/2017
05/11/2017
1129
06/11/2017

<tbody>
</tbody>

Thank you,
Noa
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Excel 2010
A
B
1
order
date
2
1130
8/11/2017
3
1130
8/11/2017
4
1130
5/11/2017
5
1130
12/11/2017
6
1129
7
1129
10/11/2017
8
1129
6/11/2017
9
10
11
Value
12
1130
5/11/2017
13
1129
6/11/2017

<tbody>
</tbody>
Sheet4


Array Formulas
Cell
Formula
B12
{=MIN(IF($A$2:$A$8=A12,IF($B$2:$B$8<>"",$B$2:$B$8,99999999)))}
B13
{=MIN(IF($A$2:$A$8=A13,IF($B$2:$B$8<>"",$B$2:$B$8,99999999)))}

<tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0
Thank you, but sadly it doesnt help me...
I need to use vlookup becouse the original data is much bigger and the number of cells in the arreys is not constant...
 
Upvote 0

Forum statistics

Threads
1,216,100
Messages
6,128,834
Members
449,471
Latest member
lachbee

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