Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

I'm trying to calculate players ages determined by a set date.

For example, I need to find out how old a player will be by April 30, 2008 when the players birthdate is entered.

Can someone please help me with this? Thanks

Using 8.5 Adv on WinXP

Posted

Hi habitude

Here is a calulcation I use foer one of my applications that does the same thing.

This uses two fields a Date Of Birth and a Cuttoff Date, and it will work out the persons age on the Age Cuttoff Date.


Let ( [



dob = Date of Birth ;



CutoffDate = Age Cutoff Date 



] ; // Start of calculation



If ( not IsEmpty ( dob ) ; 



Year ( CutoffDate ) - 

Year ( dob ) - Case ( CutoffDate <

Date ( Month ( dob ) ; Day ( dob ) ; Year ( CutoffDate ) ) ; 1 ; 0 )



; "" ) // End of If function



) // End of Let function

I hope this helps

Regards

Orlando

This topic is 6213 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.