Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Reminder Emails

Heya, I have this excel spreadsheet that store data of some licenses. The
fields consist mainly of the description of the license, expiry date, the
relevant party etc. Due to the fact that this spreadsheet serves as a source
of centralised information, a reminder is required to be generated when the
expiry date is nearing. The reminder is to be sent to the relevant party who
is supposed to carry out further action (i.e. renew) the license. Thus, I
need help on:

1) How to reflect (i.e. highlight) to the user of the excel spreadsheet that
the expiry date is nearing (let's say... a wk in advance)?

2) How to extract the particular row of information in the spreadsheet
together with the heading of the spreadsheet and send to the relevant party
for further action when the expiry date is nearing?

3) How to send the row of information as an email to the relevant party?

Thank you.

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Reminder Emails


For your first problem you can use conditional formatting to highlight
your dates


--
Vlad999
------------------------------------------------------------------------
Vlad999's Profile: http://www.excelforum.com/member.php...o&userid=33586
View this thread: http://www.excelforum.com/showthread...hreadid=556743

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 137
Default Reminder Emails

2) How to extract the particular row of information in the spreadsheet

together with the heading of the spreadsheet and send to the relevant
party
for further action when the expiry date is nearing?

If you choose to use conditional formatting as suggested, you can then
interrogate a range to a color attribute to identify the records.

For each c in Range("Your range")
If c.font.colorindex = 5 'For change in Font Color to Red
Do stuff
End With
Next

For each c in Range("Your range")
If c.font.Interior.colorindex = 5 'For change in Cell Background
Color to Red
Do stuff
End With
Next

3) How to send the row of information as an email to the relevant
party?
Check out Ron de Bruin's Excellent "SendMail" add-in.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Reminder Emails

Hi Greg Glynn

I'm really bad in programming... may I know what codes i can provide under
the "Do stuff" section and how do i go about inserting the set of codes u'd
provided earlier? Click on the relevant worksheet tab and paste in "View
Code" or select the expiry date column and select Macro -- Visual Basic
Editor?!

Thank you!

"Greg Glynn" wrote:

2) How to extract the particular row of information in the spreadsheet

together with the heading of the spreadsheet and send to the relevant
party
for further action when the expiry date is nearing?

If you choose to use conditional formatting as suggested, you can then
interrogate a range to a color attribute to identify the records.

For each c in Range("Your range")
If c.font.colorindex = 5 'For change in Font Color to Red
Do stuff
End With
Next

For each c in Range("Your range")
If c.font.Interior.colorindex = 5 'For change in Cell Background
Color to Red
Do stuff
End With
Next

3) How to send the row of information as an email to the relevant
party?
Check out Ron de Bruin's Excellent "SendMail" add-in.


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
Reminder Canon Excel Discussion (Misc queries) 1 February 12th 10 01:44 PM
Reminder Bernard Liengme[_3_] Excel Worksheet Functions 2 October 28th 09 08:45 PM
pop up box reminder laidebug Excel Discussion (Misc queries) 2 August 10th 07 05:40 PM
Can excel send reminder emails on dates entered in a wookbook? Doubting_her_boss Excel Discussion (Misc queries) 2 October 27th 05 09:33 PM
Using a VMA for a reminder? Joeg Excel Programming 1 December 11th 03 08:05 PM


All times are GMT +1. The time now is 03:02 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"