More info:
Question:
"How would i go about saving the data in a calculated textbox on a form into a field in a table?
For example, on the form there is =[MatchedPages]+[UnmatchedPages] that I put into a textbox. I now want to store those results in a table with the field titled TotalPages. How would I do this?"
Answer:
"It is a good rule not to store calculated data in a table.
It needlessly takes up space and in some cases may cause invalid results.
Calculated data can be generated anytime on forms, reports and in queries.
This question has come up many times in this forum, and the answer (from the profesionals) is always the same."