I have 3 radioButtons (\"YES\", \"NO\", \"UNKNOWN\") wich matches a column from my database with 3 possible values (1, 0, NULL).
When the radioButton selected is \"
Just an idea for the future - whenever you are having a problem with big SQL code like this:
sqlQuery = "UPDATE candidatures SET offre_ID = " & idO & ", candidat_Nom = " & more and more more SQL here";"
Do the following:
debug.print sqlQuery after the code.Edit: If you have the time & the knowledge & the will to write good code, do not write code like this. You may suffer from SQL injection and other problems. Instead use the method from the answer of Mat's Mug.