A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

how to get auto next due date for the renewal of some document



 
 
Thread Tools Display Modes
  #1  
Old November 17th, 2009, 08:44 AM posted to microsoft.public.excel.misc
Farida
external usenet poster
 
Posts: 4
Default how to get auto next due date for the renewal of some document

eg. to get next servicing date for the Vehicle.
  #2  
Old November 17th, 2009, 09:34 AM posted to microsoft.public.excel.misc
Ms-Exl-Learner
external usenet poster
 
Posts: 522
Default how to get auto next due date for the renewal of some document

Assume that you are having a date in A1 cell

A1
17/11/2009

If you want to get the renewal date for the next 30 days
=DATE(YEAR(A1),MONTH(A1),DAY(A1)+30)
Result = 17/12/2009

In the above formula just added the number of days next to the Day cell
reference. Like that you can add the Month and year occurrences also.

Formula to get the Renewal Date (Next 6 Months).
=DATE(YEAR(A1),MONTH(A1)+6,DAY(A1))
Result: 17/05/2010

Formula to get the Renewal Date (Next 3 Years).
=DATE(YEAR(A1)+3,MONTH(A1),DAY(A1))
Result: 17/11/2012

Instead of referring the date in A1 cell you can mention the current date in
formula itself.

Next 30 Days:-
=DATE(YEAR(TODAY()),MONTH(TODAY()),DAY(TODAY())+30 )

Next 6 Months:-
=DATE(YEAR(TODAY()),MONTH(TODAY())+6,DAY(TODAY()))

Next 3 Years:-
=DATE(YEAR(TODAY())+3,MONTH(TODAY()),DAY(TODAY()))

Hope this is what you required.

If this post helps, Click Yes!

--------------------
(Ms-Exl-Learner)
--------------------



"Farida" wrote:

eg. to get next servicing date for the Vehicle.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:57 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.