October 3, 200124 yr I have a script: Case (Stu_CompYear - status ( currentdate ) <= 0, "Graduate", Stu_CompYear - status ( currentdate ) <= 365, "12", Stu_CompYear - status ( currentdate ) <= 2*365, "11", Stu_CompYear - status ( currentdate ) <= 3*365, "10", "9") that converts a 4-digit graduation year into a grade value, i.e. 2003 yields 11, that I want to recalculate on September 30 of each year, so that in 2003 a graduation year of 2003 should become 12. So far, the calculation works for new records, but it doesn't update the existing records. Is there a way to force my database to recalculate values for all records?
Create an account or sign in to comment