ItIsHardToProgram
Technical User
Hello!
As my thread indicates, I am trying to use the BETWEEN function with 2 dates in SQL. I had a feeling I had to convert the DATE to numbers and then reconvert to DATE.
I am wondering how to proceed when using the CAST in order for this to work.
This is my code that isn't currently working, see strSQL for the SQL:
Thanks for any help
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
As my thread indicates, I am trying to use the BETWEEN function with 2 dates in SQL. I had a feeling I had to convert the DATE to numbers and then reconvert to DATE.
I am wondering how to proceed when using the CAST in order for this to work.
This is my code that isn't currently working, see strSQL for the SQL:
Code:
Dim dDateBEG As Long
Dim dDateEND As Long
Private Sub DateBEG_AfterUpdate()
dDateBEG = DateBEG.Value
End Sub
Private Sub DateEND_AfterUpdate()
dDateEND = DateEnd.Value
End Sub
Private Sub Creer_Click()
Dim strSQL As String
strEmplacement = CurrentProject.Path
MsgBox (dDateBEG)
MsgBox (dDateEND)
strSQL = "SELECT T.IdProjet, T.IDEmployer , SUM(T.LundiRD+T.MardiRD+T.MercrediRD+T.JeudiRD+T.VendrediRD+T.SamediRD+T.DimancheRD)" & _
"AS [Heures de R&D], T.semaine"
strSQL = strSQL + " FROM tblTimeSheet AS T " & _
" WHERE CAST(T.semaine as integer) BETWEEN " & dDateBEG & " AND " & dDateEND & _
" GROUP BY T.IdProjet;"
DoCmd.OpenQuery (strSQL)
End Sub
Thanks for any help
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.