Min between 2 dates

Mathman

Board Regular
Joined
Jan 28, 2017
Messages
152
Office Version
  1. 2016
Platform
  1. Windows
How can I get the minimum value between 2 dates?

Thank you
MM
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
The MIN function would work. If you have a date in A1 and another in B1, the formula =MIN(A1, B1) will return the earlier of those two dates.
 
Upvote 0
Sorry, that was badly worded on my end.

I have 10 years of dates in column A and values in column B. In C1 I have sept, 1 2018 and in C2 I have sept, 1 2017

I need to get the min value between these 2 dates.

Hope that was clearer on my part.

Thx
 
Upvote 0
You want to find the minimum of the column B values whose column A data is between the two given dates C1 and C2.

Put this in a cell (adjust the A1:A10 reference to include all of your range) and enter it with CTRL-Shift-Enter

=MIN(IF(C1<A1:A10,IF(A1:A10<C2,B1:B10)))
 
Upvote 0
Mike,

Your formula did not come through. Remember, if you are using > or < signs, be sure to surround them with spaces so they aren't mistaken for HTML code.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

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