LARGE function within an index Match (No duplicates)

jamescooper

Well-known Member
Joined
Sep 8, 2014
Messages
834
Hello,

I have the following formula, with in column B, range (B11:B35), the rank 1 to 25, Cell B11 =1.

As I drag it down I find duplicates, is there a way of modifying the formula below so it doesn't pick up duplicates?

VBA Code:
=TEXT(INDEX(Pricing!$D$10:$D$493,MATCH(LARGE(Pricing!$Q$10:$Q$493,B11),Pricing!$Q$10:$Q$493,0)),"dd/mm/yyyy")

Many thanks.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
Thanks for that, how about
Excel Formula:
=TEXT(TAKE(SORTBY(Pricing!$D$10:$D$493,Pricing!$Q$10:$Q$493,-1),25),"dd/mm/yyyy")
 
Upvote 0
This is an ARRAY formula. Needs Ctrl+Shift+Enter together, not simple Enter.
Excel Formula:
=TEXT(INDEX(Pricing!$D$10:$D$493,MATCH(LARGE(Pricing!$Q$10:$Q$493-(ROW($Q$10:$Q$493)*10^-6),B11),Pricing!$Q$10:$Q$493-(ROW($Q$10:$Q$493)*10^-6),0)),"dd/mm/yyyy")
 
Upvote 0
Are you putting the formula into a table, or just a normal range?
If it's a range, clear all the cells below the formula.
 
Upvote 0

Forum statistics

Threads
1,215,102
Messages
6,123,097
Members
449,096
Latest member
provoking

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