Not only is it not possible, it's not proper database design. Your request
is one of the main reasons that it isn't advisable. What happens next year?
Does it recalculate every day?
Instead, use a query or form to calculate, which I realize is not what you
want, but is the most desirable. Keep in mind that tables really should
never be used to display or enter data. Their purpose is to store it.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"Portia" <(E-Mail Removed)> wrote in message
news:12C4304F-6213-4841-B93B-(E-Mail Removed)...
> Is it possible to calulate a field in a table? I want to have [age] as a
> field in my table, and I want it to be automatically calculated from DOB
> (a
> field in the table) and the current date. (I know I can do this in a form
> or
> query, but I want the field in the table).