I want to create a query like this :
SQL = SQL + "Libelle = \"" + Me.Libelle + "\" AND "
because if I have a problem with my data if I write like this :
SQL = SQL + "Libelle = '" + Me.Libelle + "' AND "
but there is a problem with the \”
I’m used to use it in Java (I’m not a VBA developper :s)
How to resolve it ?
thnx
The solution is a concatenation with the Chr(34) 🙂