The reason it is a bad idea to store calculated values is the scenario when
the operands change. Many many records instantly become a maintenance
nightmare. If the user is inputting a weight value, it might be better to
store that, and calculate the other value as needed.
In any case, you can store values in a table using the following code:
Dim sSQL As String
sSQL = "INSERT tblMyTable (Field1, Field2) VALUES (" &
Me.txtNumericControl & ", """ & Me.txtCharacterControl & """)"
CurrentDb.Execute sSQL, dbFailOnError
Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia