ItIsHardToProgram
Technical User
Hello, I currently have a SQL for my database that sorts out some data, innerjoins it and groups it in the same time.
This works perfectly fine, but I would like it to do the following: When a project is on tblTimeSheet, but is not on TblProjet, I want it to appear any way, with the same fields.
Fields I want: SELECT T.IdProjet and Sum(E.SalaireHoraire*((T.Lundi)+T.Mardi+T.Mercredi+T.Jeudi+T.Vendredi+"etc...)
Fields I want when available: P.TempsPrevue
Is this possible?
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
Code:
strSQL = "SELECT T.IdProjet, P.TempsPrevue as Budget, 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 [Honoraire utilisé], P.TempsPrevue-[Honoraire utilisé] AS [Honoraire Restant]"
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" & _
" WHERE P.IdEmployerResponsable = " & SelectEmp & _
" GROUP BY T.IdProjet, P.TempsPrevue;"
This works perfectly fine, but I would like it to do the following: When a project is on tblTimeSheet, but is not on TblProjet, I want it to appear any way, with the same fields.
Fields I want: SELECT T.IdProjet and Sum(E.SalaireHoraire*((T.Lundi)+T.Mardi+T.Mercredi+T.Jeudi+T.Vendredi+"etc...)
Fields I want when available: P.TempsPrevue
Is this possible?
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.