Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calculate a date from number of months

Status
Not open for further replies.

pleashelp

Technical User
Feb 27, 2002
97
US
I am using CR 9.0. I have a field that shows the date an item was purchased (DTPurchased)e.g. 10/25/1991. And a field that tells me the number of months in the loan (Mths)e.g 60.

I need to calculate when the loan will be paid off based on these 2 fields. Any ideas?

Thx
 
Use a formula:

Dateadd("m",{MonthsField}, {LoanDateField})

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports
 
You should be able to create this formula:

dateadd("m", {mths}, {DTPurchased})
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top