W
Wolfgang Armbruster
I'm trying to build a form which contains a calculated field. The
contents of this field should be saved into a table of the same database
by clicking on a button...
I've tried this piece of code
CurrentDb.Execute "Update Table1 " & _
"SET Field1 = " & Str(Me!FormField) & " " & _
"WHERE Index = "" & Me!Index & """
I do not get an error, but nothing is written to the table...
The index field is text and it's the primary index in the destination
table...
Any advice is much appreciated.
contents of this field should be saved into a table of the same database
by clicking on a button...
I've tried this piece of code
CurrentDb.Execute "Update Table1 " & _
"SET Field1 = " & Str(Me!FormField) & " " & _
"WHERE Index = "" & Me!Index & """
I do not get an error, but nothing is written to the table...
The index field is text and it's the primary index in the destination
table...
Any advice is much appreciated.