I have the following vba update query:
strSQLB = "UPDATE Exch_Designation_List SET Broker_Number = " & cboBrokerNumber & " , Firm = '" & sFirm & "' ,Office = '" & txtOffice & "' , Sales_Series = 'XXXXX', Account_Number = 'XXXXX';"
MsgBox strSQLB
DoCmd.RunSQL strSQLB
The query is not updating the table. Can anyone qive me some suggestions on what might be going wrong? Thanks.
dave
strSQLB = "UPDATE Exch_Designation_List SET Broker_Number = " & cboBrokerNumber & " , Firm = '" & sFirm & "' ,Office = '" & txtOffice & "' , Sales_Series = 'XXXXX', Account_Number = 'XXXXX';"
MsgBox strSQLB
DoCmd.RunSQL strSQLB
The query is not updating the table. Can anyone qive me some suggestions on what might be going wrong? Thanks.
dave