Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default can excel print wordings auto ?

For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date due
is up" automatically. Then after 1 week or few days ( 3 or 5), that message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default can excel print wordings auto ?

Can i take the reply as "NO" since no 1 feedback?

"kyoshirou" wrote:

For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date due
is up" automatically. Then after 1 week or few days ( 3 or 5), that message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default can excel print wordings auto ?

Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")

--
Regards
Roger Govier

"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default can excel print wordings auto ?

To cope more closely with varying lengths of months, Roger's formula could
perhaps be modified along the lines of:
=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))
--
David Biddulph

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")


"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default can excel print wordings auto ?

Hi David
That is better.

--
Regards
Roger Govier

"David Biddulph" <groups [at] biddulph.org.uk wrote in message
...
To cope more closely with varying lengths of months, Roger's formula could
perhaps be modified along the lines of:
=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))
--
David Biddulph

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")


"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default can excel print wordings auto ?

Hi David & Roger,

Thanks!

"David Biddulph" wrote:

To cope more closely with varying lengths of months, Roger's formula could
perhaps be modified along the lines of:
=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))
--
David Biddulph

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")


"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!





  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default can excel print wordings auto ?

=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))

Would u mind explain what does it term means?
I dont know.



"David Biddulph" wrote:

To cope more closely with varying lengths of months, Roger's formula could
perhaps be modified along the lines of:
=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))
--
David Biddulph

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")


"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!





  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default can excel print wordings auto ?

For some unknown reason, DATEDIF is the one Excel function not covered
currently by Excel Help.
For details of the function, see http://www.cpearson.com/excel/datedif.aspx
--
David Biddulph

"kyoshirou" wrote in message
...
=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))

Would u mind explain what does it term means?
I dont know.



"David Biddulph" wrote:

To cope more closely with varying lengths of months, Roger's formula
could
perhaps be modified along the lines of:
=IF(TODAY()<B1,"",IF(AND(MOD(DATEDIF(B1,TODAY(),"m "),3)=0,DATEDIF(B1,TODAY(),"md")<=5),"DUE
DATE",""))
--
David Biddulph

"Roger Govier" <roger@technology4unospamdotcodotuk wrote in message
...
Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")


"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like:
date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again
auto?


Thanks!






  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 133
Default can excel print wordings auto ?

=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")
what does that =0 and <=5 means?



"Roger Govier" wrote:

Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")

--
Regards
Roger Govier

"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like: date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again auto?


Thanks!



  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,480
Default can excel print wordings auto ?

Hi

The MOD() function is dividing the number of days between Today() and your
date in B1, by 91 (approximate number of days in 3 months) and returning the
remainder.

The =0 and <= 5 is comparing this values and if it is equal to or more than
0, and les than or equal to 5, then show DUE Date, otherwise show nothing.

The response from David using Datedif gives an exact result.

--
Regards
Roger Govier

"kyoshirou" wrote in message
...
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")
what does that =0 and <=5 means?



"Roger Govier" wrote:

Hi

This not exact, but probably close enough for your requirement
=IF(AND(MOD(TODAY()-B1,91)=0,MOD(TODAY()-B1,91)<=5),"DUE DATE","")

--
Regards
Roger Govier

"kyoshirou" wrote in message
...
For example, if i have a date field of 28/02/08 in column B,
can i configure in column C such that every 3 months, message like:
date
due
is up" automatically. Then after 1 week or few days ( 3 or 5), that
message
will auto-erase.
And after 3 months, the message "date due is up" will output again
auto?


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
to combine wordings in two columns vcff Excel Discussion (Misc queries) 3 December 29th 07 11:19 PM
Auto print Geo Excel Discussion (Misc queries) 8 October 4th 07 01:01 AM
Macro Help Needed - Excel 2007 - Print Macro with Auto Sort Gavin Excel Worksheet Functions 0 May 17th 07 01:20 PM
auto select cells to print Conrad ICR Excel Worksheet Functions 1 May 10th 05 11:40 PM
How do I auto increment cell value on print in Excel Hiren Excel Worksheet Functions 7 January 25th 05 06:39 PM


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