The following code does the job to put tagname (a variable) into NumberStatement field in the table:-
SQLquery = "UPDATE [lvrstatements1] SET [NumberStatement] = '" & tagName & "' "
DoCmd.RunSQL SQLquery
BUT I need;
To SET the field in the table to Variable1 + variable2 (e.g to NumberStatement2 with NumberStatement being Variable1 and 2 being Variable2)
Any ideas?
Thanks...
SQLquery = "UPDATE [lvrstatements1] SET [NumberStatement] = '" & tagName & "' "
DoCmd.RunSQL SQLquery
BUT I need;
To SET the field in the table to Variable1 + variable2 (e.g to NumberStatement2 with NumberStatement being Variable1 and 2 being Variable2)
Any ideas?
Thanks...