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

Hi
I have a list of exam dates and I need to do refresher courses every so often.
I would like excel to remind me 1 month before a course refresher is due and
also if I am out of date for any courses.
What is the best way to go about this in excel?
Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Date Reminders

Use conditional formatting. Look it up in help, and the post back with rules
that you want to embed for further help.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Hi
I have a list of exam dates and I need to do refresher courses every so

often.
I would like excel to remind me 1 month before a course refresher is due

and
also if I am out of date for any courses.
What is the best way to go about this in excel?
Thanks



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Date Reminders

Thanks for that. At present i use:
=DATEDIF(D4,$BB$3,"d")365
Then I use the true/false result with conditional formatting to give a green
box if in date, a red box if out of date. Cell BB3 uses the =TODAY() function
to get the current date.
What I would also like is another value 1 month before I am out of date
which I could then format yellow.

"Bob Phillips" wrote:

Use conditional formatting. Look it up in help, and the post back with rules
that you want to embed for further help.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Hi
I have a list of exam dates and I need to do refresher courses every so

often.
I would like excel to remind me 1 month before a course refresher is due

and
also if I am out of date for any courses.
What is the best way to go about this in excel?
Thanks




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Date Reminders

Mariner,

Firstly, I wouldn't store TODAY() in a cell, I would use

=DATEDIF(D4,TODAY(),"d")365

With DATEDIF you cannot have a month early, but you could just do 30 days
early, like

=DATEDIF(D4,TODAY(),"d")335

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Thanks for that. At present i use:
=DATEDIF(D4,$BB$3,"d")365
Then I use the true/false result with conditional formatting to give a

green
box if in date, a red box if out of date. Cell BB3 uses the =TODAY()

function
to get the current date.
What I would also like is another value 1 month before I am out of date
which I could then format yellow.

"Bob Phillips" wrote:

Use conditional formatting. Look it up in help, and the post back with

rules
that you want to embed for further help.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Hi
I have a list of exam dates and I need to do refresher courses every

so
often.
I would like excel to remind me 1 month before a course refresher is

due
and
also if I am out of date for any courses.
What is the best way to go about this in excel?
Thanks






  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Date Reminders

Hi Bob

Thats a simpler formula. As you maybe can tell I am new to excel.
Instead of the formula returning true or false would it be possible for the
formula to return for instance 1, 2 or 3.
So if the result is less than 335 it returns 1.
If less than 365 but more than 335 it returns 2.
If more than 365 it returns 3.

Thanks

Mariner


"Bob Phillips" wrote:

Mariner,

Firstly, I wouldn't store TODAY() in a cell, I would use

=DATEDIF(D4,TODAY(),"d")365

With DATEDIF you cannot have a month early, but you could just do 30 days
early, like

=DATEDIF(D4,TODAY(),"d")335

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Thanks for that. At present i use:
=DATEDIF(D4,$BB$3,"d")365
Then I use the true/false result with conditional formatting to give a

green
box if in date, a red box if out of date. Cell BB3 uses the =TODAY()

function
to get the current date.
What I would also like is another value 1 month before I am out of date
which I could then format yellow.

"Bob Phillips" wrote:

Use conditional formatting. Look it up in help, and the post back with

rules
that you want to embed for further help.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Hi
I have a list of exam dates and I need to do refresher courses every

so
often.
I would like excel to remind me 1 month before a course refresher is

due
and
also if I am out of date for any courses.
What is the best way to go about this in excel?
Thanks








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Date Reminders

=IF(DATEDIF(D4,TODAY(),"d")365,3,IF(DATEDIF(D4,TO DAY(),"d")335,2,1))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Hi Bob

That's a simpler formula. As you maybe can tell I am new to excel.
Instead of the formula returning true or false would it be possible for

the
formula to return for instance 1, 2 or 3.
So if the result is less than 335 it returns 1.
If less than 365 but more than 335 it returns 2.
If more than 365 it returns 3.

Thanks

Mariner


"Bob Phillips" wrote:

Mariner,

Firstly, I wouldn't store TODAY() in a cell, I would use

=DATEDIF(D4,TODAY(),"d")365

With DATEDIF you cannot have a month early, but you could just do 30

days
early, like

=DATEDIF(D4,TODAY(),"d")335

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Thanks for that. At present i use:
=DATEDIF(D4,$BB$3,"d")365
Then I use the true/false result with conditional formatting to give a

green
box if in date, a red box if out of date. Cell BB3 uses the =TODAY()

function
to get the current date.
What I would also like is another value 1 month before I am out of

date
which I could then format yellow.

"Bob Phillips" wrote:

Use conditional formatting. Look it up in help, and the post back

with
rules
that you want to embed for further help.

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Mariner" wrote in message
...
Hi
I have a list of exam dates and I need to do refresher courses

every
so
often.
I would like excel to remind me 1 month before a course refresher

is
due
and
also if I am out of date for any courses.
What is the best way to go about this in excel?
Thanks








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
Reminders in Excel tmv Excel Discussion (Misc queries) 1 March 26th 10 08:05 PM
Pop up reminders Anju Bala Excel Discussion (Misc queries) 1 February 8th 10 01:30 PM
how do i create reminders in outlook from a date cell in excel? Philhegele New Users to Excel 1 September 3rd 07 06:14 PM
REMINDERS BASED ON THE DATE ILYAS New Users to Excel 2 January 8th 06 03:59 PM
Can I set date reminders in MS Excel? do Excel Discussion (Misc queries) 3 October 27th 05 06:04 PM


All times are GMT +1. The time now is 09:12 PM.

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"