Find dates

Gusher

Board Regular
Joined
Aug 21, 2011
Messages
201
In col a I have month end dates. In col B I have percentages. I need a function that will return the date of the lowest number in Col B.

Many Thanks
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
What if the lowest number in column B appears multiple times (on different dates)? What date do you want to have returned?
 
Upvote 0
See this example:

1719333634152.png


Formula in cell D2:
Excel Formula:
=INDEX(A2:A7,MATCH(MIN(B2:B7),B2:B7,0))
 
Upvote 0
Solution
You don't have your version on your button, so there are a few options. Please update your profile accordingly.

Try these:
Book1
ABCDEFG
1First Lowest Non 365 Last Lowest Non 365First Lowest 365 Last Lowest 365
22024-01-3156%2024-02-292024-09-302024-02-292024-09-30
32024-02-2950%
42024-03-3154%
52024-04-3052%
62024-05-3154%
72024-06-3056%
82024-07-3157%
92024-08-3151%
102024-09-3050%
112024-10-3159%
122024-11-3060%
132024-12-3151%
14
15
16
Sheet2
Cell Formulas
RangeFormula
D2D2=INDEX(A2:A13,MATCH(MIN($B$2:$B$13),B2:B13,0))
E2E2=INDEX(A2:A13,MAX(((MIN($B$2:$B$13)=B2:B13)*(ROW(B2:B13)-1))))
F2F2=XLOOKUP(MIN(B2:B13),B2:B13,A2:A13,"not found",0,1)
G2G2=XLOOKUP(MIN(B2:B13),B2:B13,A2:A13,"not found",0,-1)
A3:A13A3=EOMONTH(A2,1)
 
Upvote 0
You are welcome.
Glad we were able to help!
 
Upvote 0

Forum statistics

Threads
1,221,816
Messages
6,162,149
Members
451,746
Latest member
samwalrus

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