getting birthdays still to come in year

mholmes

New Member
Joined
Oct 30, 2002
Messages
16
Hi All. I have two columns. One has names and next to it, the other column, has birthdays. I am trying to make a new column listing all of the birthdays that are still to come in the year. I.e. people who have birthdays in September would not show up - those that have them in December, would.

Any ideas?


Thanks!

Marcus
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
=IF(MONTH(bday)>MONTH(TODAY()),"yes",IF((DAY(bday)>DAY(TODAY()))*(MONTH(bday)=MONTH(TODAY())),"yes","no"))

Should suffice.
 
Upvote 0
Hmm bday stands for a cell? What is "bday"?

I tried:

=IF(MONTH(F3))>MONTH(TODAY()),"yes",IF((DAY(F3)>DAY(TODAY()))*(MONTH(F3)=MONTH(TODAY())),"yes","no"))

and it doesn't work
 
Upvote 0
I don't need it to respond with yes or no but rather just list in a column one after another the ones that are left.
 
Upvote 0
if the "birthdays" are held as the date in the year that the birthday falls on, rather than the actual date of birth, then with names in col a, dates on col b, a simple:

=if(b2<today(),"",a2)

paddy
This message was edited by PaddyD on 2002-10-31 17:31
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
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