I've searched these forums for the Default Value = previous value thing. I've done this before, but I can't seem to remember how...this is what I have on my Exit event:
This works ONLY if my value is numeric; if it is not numeric, i get the #NAME? error in the next records text box. Why is this only working for numeric values? The data type in the associated table for this field is text.
Code:
Private Sub Text58_Exit(Cancel As Integer)
Text58.DefaultValue = Text58.Value
End Sub
This works ONLY if my value is numeric; if it is not numeric, i get the #NAME? error in the next records text box. Why is this only working for numeric values? The data type in the associated table for this field is text.