Scott is right as usual. You may share this response with your boss if you wish. And if your boss has questions, go ahead & post them.
Rule #1: There are no "hard and fast" rules in programming. (not even this one...

)
The business about storing data you could compute is a subtle one having to do with normalization. It applies to sales, stocks, inventory, employment history, taxes, etc.
General rule: When archiving, distinguish among the fields that can be computed from what you intended to store and the fields that are "basic" elements of your data sets. Don't store the computable items.
Exception: When archiving SUMMARIES of things for historical research but you are not storing the underlying elements, it is OK to store (date-tagged) computed fields as though they were "basic" elements. In other words, if you are NOT storing the items you need to recompute the historical info, then it is OK to at that time compute what you DO want to store and dump the stuff made obsolete by that computation.
Why? Because your computer, if less than three years old, is probably at least a 1 GHz machine. Now 1 GHz = (approximately) 250 million instructions per second based on most Intel instructions taking 3-5 clock cycles, often less. Your disk spins at (approximately) 3600 to 10,000 rpm, or 60 to 166 rps. At 10,000 rpm this is 1.5 MILLION instructions per revolution of the disk. Closer to 5 MILLION for slower disks. Your machine will have PLENTY of time to recompute everything you need to recompute while waiting for the disk to spin just once.
So maybe you've got room on the disk to keep a little bit more, but why be a wastrel? Access does have a storage limit. Why push the envelope? Just store what you think you need to store in order to recompute anything for which a formula exists.
Before I go into a discussion of why this might violate normalization rules, I would merely suggest that you search the forum for questions on Inventory issues because, though the topics may differ, the same exact question (keep vs. recompute) is a frequent flyer here. I know I have explained the concept in detail before. So have others like GHudson, Pat Hartman, ColinEssex, and others too numerous to remember them all.