Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 4868 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

I'm just getting started so bear with me. I've just imported a group of employee's who can retire after 25 years of service. I need to calculate the their retirement date and the age they will be when they retire.

Thanks,

T.

Posted

Try:

DateOfRetirement =

Date ( Month ( DateOfEmployment ) ; Day ( DateOfEmployment ) ; Year ( DateOfEmployment ) + 25 )






AgeAtRetirement = 


Year ( DateOfRetirement ) - Year ( DateOfBirth ) - ( Date ( Month ( DateOfBirth ) ; Day ( DateOfBirth ) ; Year ( DateOfRetirement ) ) < DateOfRetirement ) 

Posted

I've just imported a group of employee's who can retire after 25 years of service.

And then you deport them? :D

Sorry, couldn't resist.

  • 4 months later...
Posted

Here is a calc my dad and I made to calculate experation dates.

Where:

StartDate = date the 25 years starts,

Term_Months = number of months in the term (in your case it would be 300, 25 years times 12 months in a year)

Let ( [

x = Month ( StartDate ) + Term_Months ;

y = Day ( StartDate ) ;

z = Year ( StartDate ) ]

; If ( x > 12 ;

( x - 12 ) & "/" & ( y ) & "/" & ( z + 1 ) ;

( x ) & "/" & ( y ) & "/" & ( z ) )

)

This topic is 4868 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.