Again, you don't do this in the table. It is not correct database design.
It is redundant. It increases the size and overhead of your database.
When you build a query, form or report calculate it.
If you will have users that need to pull this and don't know how to do so,
then create a saved query that they can use as their record source. In the
query add a new column with something like the following...
Duration: End_Date - Begin_Date
Access does not have a facility to do what you ask, because it should not be
done.
Obviously, you could add the field to a table and run update queries to plug
in the number in your existing records. You could add calculations in your
data entry form and plug those into the field, etc. But it is not good
design.
You stated the dates won't change. Are you sure? No one will ever make a
typo?
I'd recommend doing this according to good practices and established
normalized design principles. All these MVPs with years of experience
couldn't be that wrong could they?
Good luck,
Rick B