help plz this should be fast and easy for you!!!

eric86vabeach

New Member
Joined
Jan 29, 2014
Messages
23
ok i have a sheet that looks like this and all i want it to do is this...

fristdate of birthemailjan.febmaraprmayjunjulaugsepoctnovdec
eric1/30/1986eric86vabeach@yahoo.com*read note*
bob2/15/1990bob@bob.com*read note

<tbody>
</tbody>

ok in cell "D3" i would like it to show "eric86vabeach@yahoo.com"
and in "E3" i would like to show "bob@bob.com"

so i would like if your email shows up in month of "date of Birth"

i would like to use this so i can email see who to email in what month
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
IN D3, type =if(Month(B3)=1,C3,"") and copy down
In E3, type =if(Month(B3)=2,C3,"") and copy down
Do this across your columns until December, changing the formula for each month.
 
Upvote 0
Or in D3 :-
Code:
=IF(MONTH($B3)=COLUMNS($D:D),$C3,"")

copy across to COLUMN O and down to your hearts content.

hth
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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