Finding next date in column

T

TheGuy

I have a spreadsheet with the names and birthdates of all employees i
our company.

Column A has the birthdates (dd-mon ie 18-jun) sorted by date
Column B has the names
C1 has todays date (=today())

What I'm trying to do is use a formula in C2 to display the nex
birthday. Any ideas
 
D

Domenic

TheGuy said:
*I have a spreadsheet with the names and birthdates of all employee
in our company.

Column A has the birthdates (dd-mon ie 18-jun) sorted by date
Column B has the names
C1 has todays date (=today())

What I'm trying to do is use a formula in C2 to display the nex
birthday. Any ideas? *

Hi,

try,

=VLOOKUP(MIN(IF(DATE(YEAR(TODAY()),MONTH(A2:A4),DAY(A2:A4))>=C1,A2:A4)),A2:B4,2,0)

Adjust the range to suit your spreadsheet and enter the formula usin
CTRL+SHIFT+ENTER

Hope this helps
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top