ItIsHardToProgram
Technical User
Hello, it is me again!
I am trying to apply something to the working and optimized query (thanks to PHV). I have a code that selects a employee number, in a form, and then tries to run the query through VBA, with an ADDED WHERE statement, the code goes as following:
VBA sends an error saying theres a syntax error (missing operator) in the WHERE statement. This statement was working with another query earlier, and it does not work with this one, am I using the WHERE statment the wrong way???
Thank you very much for your help!
Julien
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
I am trying to apply something to the working and optimized query (thanks to PHV). I have a code that selects a employee number, in a form, and then tries to run the query through VBA, with an ADDED WHERE statement, the code goes as following:
Code:
SelectEmp = No_Emplo
strSQL = "SELECT T.IdProjet, P.TempsPrevue, Sum(E.SalaireHoraire*(T.Lundi+T.Mardi+T.Mercredi+T.Jeudi+T.Vendredi+" & _
"T.Samedi+T.Dimanche+T.LundiRD+T.MardiRD+T.MercrediRD+T.JeudiRD+T.VendrediRD+T.SamediRD+T.DimancheRD))" & _
"AS TempsTotal, P.TempsPrevue-TempsTotal AS TempsRestant"
strSQL = strSQL + " FROM (tblTimeSheet AS T INNER JOIN tblProjet AS P ON T.IdProjet=P.IdProjet) INNER JOIN" & _
" tblEmployer AS E ON T.IdEmployer=E.IdEmployer" & _
" GROUP BY T.IdProjet, P.TempsPrevue" & _
" WHERE (tblprojet.IdEmployerREsponsable=" & SelectEmp & ");"
MsgBox (strSQL)
DoCmd.RunSQL strSQL
VBA sends an error saying theres a syntax error (missing operator) in the WHERE statement. This statement was working with another query earlier, and it does not work with this one, am I using the WHERE statment the wrong way???
Thank you very much for your help!
Julien
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.