conver number to date

alkrm

Registered User.
Local time
Today, 11:03
Joined
Aug 13, 2003
Messages
39
hi,
i have this main three fields

date of buying "date/time" formated
duration "number" formated
maturity"date/time" formated

doing this formula,
Maturity = [date of buying]+[duration]

where duration is in months
how can i convert the number to date/time format , so i can make the formula works,
now it adding only days ,

NOTE" SOME MONTHS ARE 31 DAYS,30 DAYS , 29 ,28
HOW CAN IT BE CONVERTABLE REGARDING TO THE SYSTEM DATE

I THINK AM LOST ........... ANY DIRECTION ???
 
that's fair enough

THANX
 
BUG

i though that solved it but....
THIS WAY IS ONLY ADDING THE MONTHS WITHOUT TAKING CARE OF THE MONTHS WITH 30 DAYS OR 31

any extra directions

thnx in advance
 
I fail to see where your problem is. What Rich proposed should suffice as the DateAdd() function does take months into account.

Add 1 month to 31 October and you'll get 30 November.
Add 1 month to 31 January and you'll get 28 February (29 February on a leap year).
Add 1 month to 31 December and you'll get 31 January.

How does this not take the different month lengths into account?
 
Useful Date Functions

Are you expecting to add 1m to the last day of one month and end up with the last day of the next month? Here's a db with a bunch of date functions. You may find one you can use.

I updated this db to include an AGE calculation and a Business days calculation. I also changed the format to a tabbed form.
 

Attachments

Last edited:
solved

thanks all for usefull help

great examples Pat .
 

Users who are viewing this thread

Back
Top Bottom