Query = "update Prod_DB_Completed_Board set [Stock Level] = '" & TextBox2.Text & "' where Laminate = '" & ComboBox2.Text & "'" & "AND" & "'" ComboBox3.Text & "'"
Missing Other Column Name :
"AND OtherColumName = " & "'" ComboBox3.Text & "'"
Jx_Man
Nearly a Senior Poster
3,329 posts since Nov 2007
Reputation Points: 1,372
Solved Threads: 444
Are you getting a syntax error? I think it is because you aren't using the WHERE clause correctly. You need to have:
WHERE Laminate = '" & ComboBox2.Text & "'" & "AND WHERE <another column> = " & "'" ComboBox3.Text & "'"
By missing that second column you are saying "WHERE laminate = some_text AND some_other_text.
hericles
Practically a Posting Shark
823 posts since Nov 2007
Reputation Points: 136
Solved Threads: 167