AlanJordan
Programmer
Does anyone know of a way to develop a query in Access, and then change the SQL of the query so that it includes variables. The result would be a SQL statement like this:
Thanks,
Alan
Code:
qdfText = "SELECT KKLogin2Justifications.KKLoginID, KKLogin2Justifications.DateAdj, KKLogin2Justifications.Reason," & _
"KKLogin2Justifications.AdjustmentMadeBy, KKLogin2Justifications.AdjustmentNumber" & _
" FROM KKLogin2Justifications WHERE (((KKLogin2Justifications.KKLoginID)=" & Chr(34) & strKKLogin & _
Chr(34) & ") AND " & _
" ((KKLogin2Justifications.DateAdj) Between " & _
"#" & Me!cboBegDate.Value & "# And #" & Me!txtEndingDate.Value & "#));"
Thanks,
Alan