I have a director who has to keep track of the age of legal cases, calculated from when the case opened. All cases are weighted according to importance, 1, 2, and 3. The date on which the cases are considered "aged" differs according to the weight.
I'm trying to develop a form for her so that she can enter data and also check data for each case. She gave me her current data in an Excel spreadsheet with the fields that she needs. One of these fields is "Aging Date", meaning the day the case gets "old." (Which is bad.) The formula in that field is =IF(D2=1,F2+360,IF(D2=2,F2+540,IF(D2=3,F2+720,"")) ). Works great. Except I can't duplicate this effort in a single field in the form. I feel like there ought to be a way to do it with an Else-If expression, but nothing I've tried works.
Of course I can run a query and come up with the date for inclusion in a report, but it would be really nice if I could get this in the form somehow.
Any help would be greatly appreciated.