field name is TotalHrs & classHrs
here is the query i tried, it doesn't work correctly..
Hope somebody will get me the solution thank you..
SELECT Class_atdn.Name, Count(Class_atdn.Date) AS CountOfDate, Sum(TimeValue(nz([TotalHrs]))) AS SumOfotalHrs, Sum(TimeValue(nz([ClassHrs]))) AS Sum_ClassHrs
FROM Class_atdn
WHERE (((Class_atdn.TotalHrs)>"0") AND ((Class_atdn.ClassHrs)>"0"))
GROUP BY Class_atdn.Name;