I have two columns, one for the date and one for the number of people who cannot make it to an event on that date. The date is formatted as an excel date. I would like to find the first date to which the least number of people cannot make it AFTER the current date. Ideally I’d like to solve the problem without resorting to VBA macros.
Share
Given column A=Dates, B=Number of people
Add a third collumn with:
Then use a Lookup to find the date of the smallest entry:
Updated with Barrys fix (thanks!)