ItIsHardToProgram
Technical User
SELECT ProjetBaseDon.[# Projet], [Valeur des honoraires]-[Total] AS [honoraires Restant]
FROM HPP, ProjetBaseDon
GROUP BY ProjetBaseDon.[# Projet];
As soon as I try grouping the entrys by Project numbers it gives me the fallowing error msg:
The function "[Valeur des honoraires]-[Total]" is not part of the agregate function.....
Any one knows why, should I instead do a inner join?!?
FROM HPP, ProjetBaseDon
GROUP BY ProjetBaseDon.[# Projet];
As soon as I try grouping the entrys by Project numbers it gives me the fallowing error msg:
The function "[Valeur des honoraires]-[Total]" is not part of the agregate function.....
Any one knows why, should I instead do a inner join?!?