Newbies BonnieH Posted November 12, 2003 Newbies Posted November 12, 2003 I need to determine the projected kindergarten school enrollment date based upon a student's date of birth. For example: If the student's date of birth falls between the dates 9-1-1997 and 8-31-1998 they will enroll in kindergarten in the school year 03/04. I have tried a calculation field with an "if "calculation but I cannot seem to get this to work. I have searched other posted sites for days and cannot find a simple solution. Please help!
BobWeaver Posted November 12, 2003 Posted November 12, 2003 This will give you the enrollment year (ie., 2003): Year(Birthdate)+(Month(Birthdate)>8)+5 If you want to display it as 03/04 etc., then you can do the following: Right(Year(Birthdate)+(Month(Birthdate)>8)+5,2)&"/"&Right(Year(Birthdate)+(Month(Birthdate)>8)+6,2) Set the result of this calculation to type "text"
Newbies BonnieH Posted November 17, 2003 Author Newbies Posted November 17, 2003 Thanks! It works like a charm! Saved me tons of time.
Recommended Posts
This topic is 7780 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