INDEX / LARGE / MAX / COLUMN Query

surkdidat

Well-known Member
Joined
Oct 1, 2011
Messages
597
Office Version
  1. 365
I have the below formula which picks up the column header of the most recent date that is in a cell between N2 to Q2 and X2 to AA2 (ie not in o2 toW2). This works fine until a date in o2 is the same as N2 (providing there is no further dates in the later cells in the formula. If this happens, it returns the COlumn Q header. If the date in Column Q is afterwards it omits (correctly) from the return result.
(I am entering this as an array formula)


---N---|---P---|---Q---| …………|---X---|
AAAAA|BBBBBB|CCCCC|...…….|DDDDD|

1/5/19|1/5/19 ..........................................…… Returns BBBBBB (Correct)
1/5/19|1/5/19|1/5/19| ........................…………. Returns CCCCCC (Incorrect as Column Q should not be picked up)
1/5/19|2/5/19|3/5/19| .................................… Returns BBBBBBB (Correct - as Column Q is not in formula)
1/5/19|2/5/19|2/5/19|...………|2/5/19| ……………... Returns DDDDDDD (Correct, omits Col Q, X is in formula)



Code:
=IFERROR(INDEX($N$1:$AA$1,LARGE(IF(MAX(N2:Q2,X2:AA2)=N2:AA2,COLUMN(N2:AA2)-COLUMN(N2)+1),1)),"")
 
Last edited:

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"

Forum statistics

Threads
1,225,757
Messages
6,186,848
Members
453,379
Latest member
gabriellegonzalez

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