You can write a VBA script to parse the input and perform any needed calculations. This could be triggered by an unbound form field's BeforeUpdate event.
Steps:
- Create a field named Field1 for the calculated value (bound to the appropriate database field).
- Add an unbound field to your form and name it Input1.
- In Design view, right-click on Input1 and choose Properties. Under Events -> Before Update, click the "..." button.
- Insert the VBA code that I have written (below).
- Save your changes and close the VBA editor.
- Return to Form view and enter an expression into your Input1 field. When you tab out of the field, the expression will be evaluated and the value will appear in Field1.
Note that, for reasons of security and/or data integrity, you may need to sanitize your user input before evaluating it as an expression. The details of "how" and "why" fall outside the scope of the original question.
Private Sub Input1_BeforeUpdate(Cancel As Integer)
' TO-DO: Validate/sanitize input as necessary for security & validity;
' Exit Sub prior to the Eval() if we see something we don't like
Dim result As Variant
result = Eval(Input1.Value) ' Evaluate the contents of Input1
If IsNumeric(result) Then Field1 = result ' Save any numeric result to Field1
End Sub