ItIsHardToProgram
Technical User
Hello Everyone,
I am looking for some one to help me with my access query that is currently not working...
The database infrastructure goes like this:
[tt]
TblTimeSheet tblprojet tblemployer
Idprojet IdProjet IdEmployer
Idemployer TempsPrevue SalaireHoraire
Lundi
Mardi
mercredi
Vendredi
Samedi
Dimanche[/TT]
To make this understandable for you, I will translate. Note, in the SQL I use the tbls and fields mentioned above.
[TT]
TblTimeSheet TblProjet TblEmployer
IdProject IdProject IdEmployee
IdEmployee BudgetedTime HourlyRate
Monday
Tuesday
Wenesday
Thursday
Friday
Saturday
Sunday
[/TT]
The SQL goes like this (N.B.* Don't hesitate optimizing it):
[Blue]When I execute it, It gives me an error, saying TempsPrevue is not part of the aggregate function (best translation I could do from french to english)[/Blue]
Thank you for helping me understand this problem, so I don't have to come here everytime it pops up.
Your help is much appreciated.
Cordialy,
Julien Roy
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
I am looking for some one to help me with my access query that is currently not working...
The database infrastructure goes like this:
[tt]
TblTimeSheet tblprojet tblemployer
Idprojet IdProjet IdEmployer
Idemployer TempsPrevue SalaireHoraire
Lundi
Mardi
mercredi
Vendredi
Samedi
Dimanche[/TT]
To make this understandable for you, I will translate. Note, in the SQL I use the tbls and fields mentioned above.
[TT]
TblTimeSheet TblProjet TblEmployer
IdProject IdProject IdEmployee
IdEmployee BudgetedTime HourlyRate
Monday
Tuesday
Wenesday
Thursday
Friday
Saturday
Sunday
[/TT]
The SQL goes like this (N.B.* Don't hesitate optimizing it):
Code:
SELECT tblTimeSheet.IdProjet, tblTimeSheet.IdEmployer, tblProjet.TempsPrevue, Sum(tblEmployer.SalaireHoraire*tblTimeSheet.Lundi+tblEmployer.
SalaireHoraire*tblTimeSheet.Mardi+tblEmployer.SalaireHoraire*tblTimeSheet.
Mercredi+tblEmployer.SalaireHoraire*tblTimeSheet.Jeudi+tblEmployer.
SalaireHoraire*tblTimeSheet.Vendredi+tblEmployer.SalaireHoraire*
tblTimeSheet.Samedi+tblEmployer.SalaireHoraire*tblTimeSheet.Dimanche+
tblEmployer.SalaireHoraire*tblTimeSheet.LundiRD+tblEmployer.SalaireHoraire
*tblTimeSheet.MardiRD+tblEmployer.SalaireHoraire*tblTimeSheet.MercrediRD+
tblEmployer.SalaireHoraire*tblTimeSheet.JeudiRD+tblEmployer.SalaireHoraire
*tblTimeSheet.VendrediRD+tblEmployer.SalaireHoraire*tblTimeSheet.SamediRD+
tblEmployer.SalaireHoraire*tblTimeSheet.DimancheRD) AS TempsTotal, tblProjet.TempsPrevue-TempsTotal AS TempsRestant
FROM tblProjet INNER JOIN (tblEmployer INNER JOIN tblTimeSheet ON
tblEmployer.IdEmployer = tblTimeSheet.IdEmployer) ON (tblProjet.IdEmployer
= tblEmployer.IdEmployer) AND (tblProjet.IdProjet = tblTimeSheet.IdProjet)
GROUP BY tblTimeSheet.IdProjet, tblTimeSheet.IdEmployer;
[Blue]When I execute it, It gives me an error, saying TempsPrevue is not part of the aggregate function (best translation I could do from french to english)[/Blue]
Thank you for helping me understand this problem, so I don't have to come here everytime it pops up.
Your help is much appreciated.
Cordialy,
Julien Roy
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.