ddinisco Posted January 22, 2013 Posted January 22, 2013 I have two fields Date_Hired and Date_PerformanceReview. I would like the Date_PerformanceReview to update to next year once the Date_Hire of the current year has passed. Date_Hire = 1/3/2009 once the current date goes beyond 1/3 of the current year it would change to 1/3/2014
comment Posted January 22, 2013 Posted January 22, 2013 Try = Let ( [ today = Get ( CurrentDate ) ; bDate = Date ( Month ( Date_Hire ) ; Day ( Date_Hire ) ; Year ( today ) ) ] ; Case ( today < bDate ; bDate ; Date ( Month ( Date_Hire ) ; Day ( Date_Hire ) ; Year ( today ) + 1 ) ) ) Make sure the calculation is unstored.
Recommended Posts
This topic is 4380 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