stevec Posted January 20, 2003 Posted January 20, 2003 Hi! using FileMaker 5. I need to figure out a simple "expiration date" I have a DealDate field (xx/xx/xxxx date format), a TermsInMonths field (number format) and need a calculation that shows the date the terms expire. For example, if the DealDate is 1/13/2003, and the Terms field is 18, the result should say 7/13/2004. What's the simple way to do this? (I tend to overlook the obvious and make it way too complex! heh) Thanks for any help!
Lee Smith Posted January 20, 2003 Posted January 20, 2003 Hi stevec, New Calculation Field if you don't have one already - Results = Date Date( Month(YourDateField) + 18, Day(YourDateField), Year(YourDateField)) HTH Lee
Vaughan Posted January 20, 2003 Posted January 20, 2003 Use the TermsInMonths field in the calculation to make it more flexible... Date( Month(YourDateField) + TermsInMonths, Day(YourDateField), Year(YourDateField))
Recommended Posts
This topic is 8048 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now