I'm trying to change the default value of an item whenever the value in a field changes. I have the code executing just fine, but for some reason it's just not saving, even with the following line of code
DoCmd.Save ObjectType:=acForm, ObjectName:=Me.Form.Name
This is what I'm trying to accomplish whenever the value is changed, but it's just not happening
Me.fld_BankName.DefaultValue = "=" & con_Quote & Me.fld_BankName & con_Quote
Is the default value not modifiable in run-time?
DoCmd.Save ObjectType:=acForm, ObjectName:=Me.Form.Name
This is what I'm trying to accomplish whenever the value is changed, but it's just not happening
Me.fld_BankName.DefaultValue = "=" & con_Quote & Me.fld_BankName & con_Quote
Is the default value not modifiable in run-time?