
Originally Posted by
pbaldy
Possible? Sure, but:
1) In a word, don't. There's a general rule-of-thumb in database design that you don't store calculated values. It's simple to calculate the time on the wait list from the added to date with the DateDiff() function and the Date() function which returns today's date. You can even use the admission date or the current date when there is no admission date (they're still waiting) with the Nz() function.
2) Similarly, if it's always 92 days, there's no need to store the date. You can calculate it with DateAdd() from the admission date.