How do I get a calcaulation field in a form into a field in a record ie: a
field holding a date and putting it into a field in a record that is named
date? Or takeing a field "lastname" and a field "firstname" join them
together and save then into a record call joined?
You shouldn't.
1) As long as you have a LastName and a FirstName field stored in a
table, that's all you need. Any time you need to put the 2 fields
together, do it in unbound control on a form, in a report
(=[FirstName] & " " & [LastName]) or in a caclulated field in a query.
But there is no need to save it in your table.
The same would hold true if you were calculating a date from a date
stored in your table.
2) If you really do have a field named Date, Date is a reserved
Access/VBA/Jet word and should not be used as a
field name.
For additional reserved words, see the Microsoft KnowledgeBase article
for your version of Access:
109312 'Reserved Words in Microsoft Access' for Access 97
209187 'ACC2000: Reserved Words in Microsoft Access'
286335 'ACC2002: Reserved Words in Microsoft Access'
321266 'ACC2002: Microsoft Jet 4.0 Reserved Words'