Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Send email based on date value

Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Send email based on date value

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)

In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Send email based on date value

Ron,

Thanks very much for your help ... it works like a dream. I have now got it
set up so that when the spreadsheet is open, code runs and pops up a message
box telling me there are x staff requiring recert, and asking if I want to
send reminder emails. If I select yes, the rest of the code runs and puts
"Yes" in and "Email Sent?" cell, so that the same record won't get picked up
by the msgbox on next startup.

Thanks again,

"Ron de Bruin" wrote:

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)

In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Send email based on date value

Thanks for the feedback

I think I add a example like this also on my page

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Ron,

Thanks very much for your help ... it works like a dream. I have now got it
set up so that when the spreadsheet is open, code runs and pops up a message
box telling me there are x staff requiring recert, and asking if I want to
send reminder emails. If I select yes, the rest of the code runs and puts
"Yes" in and "Email Sent?" cell, so that the same record won't get picked up
by the msgbox on next startup.

Thanks again,

"Ron de Bruin" wrote:

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)

In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Send email based on date value

Done
http://www.rondebruin.nl/mail/folder3/message.htm

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Ron de Bruin" wrote in message ...
Thanks for the feedback

I think I add a example like this also on my page

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Ron,

Thanks very much for your help ... it works like a dream. I have now got it
set up so that when the spreadsheet is open, code runs and pops up a message
box telling me there are x staff requiring recert, and asking if I want to
send reminder emails. If I select yes, the rest of the code runs and puts
"Yes" in and "Email Sent?" cell, so that the same record won't get picked up
by the msgbox on next startup.

Thanks again,

"Ron de Bruin" wrote:

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)
In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers










  #6   Report Post  
Posted to microsoft.public.excel.programming
San San is offline
external usenet poster
 
Posts: 14
Default Send email based on date value



"Ron de Bruin" wrote:

Done
http://www.rondebruin.nl/mail/folder3/message.htm

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Ron de Bruin" wrote in message ...
Thanks for the feedback

I think I add a example like this also on my page

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Ron,

Thanks very much for your help ... it works like a dream. I have now got it
set up so that when the spreadsheet is open, code runs and pops up a message
box telling me there are x staff requiring recert, and asking if I want to
send reminder emails. If I select yes, the rest of the code runs and puts
"Yes" in and "Email Sent?" cell, so that the same record won't get picked up
by the msgbox on next startup.

Thanks again,

"Ron de Bruin" wrote:

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)
In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers









  #7   Report Post  
Posted to microsoft.public.excel.programming
San San is offline
external usenet poster
 
Posts: 14
Default Send email based on date value

This is for Outlook, can you please advise for Lotus Notes.

"Ron de Bruin" wrote:

Done
http://www.rondebruin.nl/mail/folder3/message.htm

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Ron de Bruin" wrote in message ...
Thanks for the feedback

I think I add a example like this also on my page

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Ron,

Thanks very much for your help ... it works like a dream. I have now got it
set up so that when the spreadsheet is open, code runs and pops up a message
box telling me there are x staff requiring recert, and asking if I want to
send reminder emails. If I select yes, the rest of the code runs and puts
"Yes" in and "Email Sent?" cell, so that the same record won't get picked up
by the msgbox on next startup.

Thanks again,

"Ron de Bruin" wrote:

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)
In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers









  #8   Report Post  
Posted to microsoft.public.excel.programming
San San is offline
external usenet poster
 
Posts: 14
Default Send email based on date value

This is for outlook, can you please let me know this for Lotus Notes

"Ron de Bruin" wrote:

Done
http://www.rondebruin.nl/mail/folder3/message.htm

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Ron de Bruin" wrote in message ...
Thanks for the feedback

I think I add a example like this also on my page

--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Ron,

Thanks very much for your help ... it works like a dream. I have now got it
set up so that when the spreadsheet is open, code runs and pops up a message
box telling me there are x staff requiring recert, and asking if I want to
send reminder emails. If I select yes, the rest of the code runs and puts
"Yes" in and "Email Sent?" cell, so that the same record won't get picked up
by the msgbox on next startup.

Thanks again,

"Ron de Bruin" wrote:

hi Billie

For example this
http://www.rondebruin.nl/mail/folder3/message.htm

In column C :yes or no ( if the value is yes it will create a mail)
In column C use a formula like this with the dates in D for example

=IF((D1-TODAY())90,"No","Yes")




--
Regards Ron De Bruin
http://www.rondebruin.nl



"Billie Mac" wrote in message ...
Hi all,

I have a spreadsheet that stores re-certification details for people. What
I need to be able to do is look in a cell in a row, and if the date in that
cell is within 90 days of todays date, send an email using an email address
stored in another cell of the same row.

I have the code for the email worked out okay, but I can't figure how to
select which people (rows) to send the email to

Thanks in advance for your help.

Cheers









Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
can I get excel to send an email based on a cell result? rasty Excel Discussion (Misc queries) 1 June 7th 07 09:27 AM
Can Excel auto-send an email on a given date? dannykray_z Excel Discussion (Misc queries) 1 April 18th 06 07:43 PM
Send Email Based on Spreadsheet Criteria WDP Excel Programming 2 September 27th 05 11:25 PM
automatically send email in excel based on value/macro guru stuff Michael A Excel Programming 2 June 14th 05 09:08 PM
Using VBA to send email based on form response muziq2[_11_] Excel Programming 4 June 7th 04 02:26 PM


All times are GMT +1. The time now is 01:12 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"