I have a form that I�m using to enter data into a table. One of the fields in my table is storing area measurements. The users have areas in different units of measurement (Ha, Acres and square meters). I intend to allow the user to enter the area in any unit but to specify in a separate combo box what units they are using. In order to ensure my field has uniform measurements, I have created an invisible calculated text box which calculates the correct area units by using the value entered and the combo box value using this entry into its ControlSource =[txtArea]*[cboUnits].column(1). This works great and does the conversion correctly but how do I get the converted value into my table?
I know the other way would be to use a query to calculate the values later but I figured converting on the fly would be a better idea. Please help.
I know the other way would be to use a query to calculate the values later but I figured converting on the fly would be a better idea. Please help.