Return Earliest of Dates from Two Columns

Affy9

New Member
Joined
Sep 6, 2013
Messages
8
:confused:Good Morning,

I'm creating a log which has the following columns:

Date Issue Found | Date Query Raised | Date Query Resolved | Reference | Notes


What I want to happen is for the log to show me which is the oldest Raised Query (column B) but excluding any that have been resolved (column C).

I know how to return the min value, but I'm struggling to work out the correct formula to make that Min value subject to Column C being blank.

Any help would be greatly appreciated.

Thanks,

Mark
 
Last edited:

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try this:

Array formula (use Ctrl+Shift+Enter and not only Enter):

Code:
=MIN(IF($C$2:$C$18="",$B$2:$B$18))

Or

=MIN(IF($C$2:$C$18="",IF($B$2:$B$18<>"",$B$2:$B$18)))

If you have blank cells in the range B2:B18.


Markmzz
 
Last edited:
Upvote 0
Hi Markmzz

Thank you for the quick reply.

Works perfectly - Arrays are not my specialty!

Thanks again.

Affy
 
Upvote 0

Forum statistics

Threads
1,216,115
Messages
6,128,919
Members
449,478
Latest member
Davenil

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