T terry Registered User. Local time Today, 16:18 Joined Jan 26, 2010 Messages 15 Mar 23, 2010 #1 I have written a small update query which will not work. I have one of the fields named CODE. Is CODE acceptable for a field name? Terry
I have written a small update query which will not work. I have one of the fields named CODE. Is CODE acceptable for a field name? Terry
SOS Registered Lunatic Local time Today, 08:18 Joined Aug 27, 2008 Messages 3,512 Mar 23, 2010 #2 According to the list of reserved words, Code is not one, so it should be fine. What is your SQL of your query?
According to the list of reserved words, Code is not one, so it should be fine. What is your SQL of your query?
T terry Registered User. Local time Today, 16:18 Joined Jan 26, 2010 Messages 15 Mar 23, 2010 #3 Here is the code, basically updated a field. Private Sub Code_AfterUpdate() Me.AccountName = Me.Code.Column (1) End Sub
Here is the code, basically updated a field. Private Sub Code_AfterUpdate() Me.AccountName = Me.Code.Column (1) End Sub
SOS Registered Lunatic Local time Today, 08:18 Joined Aug 27, 2008 Messages 3,512 Mar 23, 2010 #4 That isn't an update query. But besides that - what actually happens when you select from the Code combo?
That isn't an update query. But besides that - what actually happens when you select from the Code combo?
T terry Registered User. Local time Today, 16:18 Joined Jan 26, 2010 Messages 15 Mar 23, 2010 #5 Fixed it! Don't know how, but it is working. Terry