I have this query :
SELECT Sum((Planning.TotalHeures)) AS SommeDeTotalHeures
FROM Planning
WHERE (((Planning.[Nom Agent])=Forms!Plan.Texte5));
It should give me results like 35hours 45 minutes, but when it's passing over 24 hours is someting like 1,3355--etc
How can I use the format in the query to force the result to be like hh:nn ? I know it is possible to do it in the query without involving vba. I posted already this but I didn't managed. Thanks in advance.
SELECT Sum((Planning.TotalHeures)) AS SommeDeTotalHeures
FROM Planning
WHERE (((Planning.[Nom Agent])=Forms!Plan.Texte5));
It should give me results like 35hours 45 minutes, but when it's passing over 24 hours is someting like 1,3355--etc
How can I use the format in the query to force the result to be like hh:nn ? I know it is possible to do it in the query without involving vba. I posted already this but I didn't managed. Thanks in advance.