I have a Timesheet program. It lists days Saturday - Monday or Sa - M.
A person can key in Notes about what they did that day.
The query currently shows hours for each day as a separate record. How can I make a query that shows all days on the same record?
this is what I have now
Employee Name Notes2 Sa Su M T W Th F
Doug IT 2
Doug IT 2
Doug IT 4
Doug IT 4.5
Doug IT 5.5
this is what I would like it to be
Doug IT 5.5 4.5 4 2 2
DougP
< I Built one
A person can key in Notes about what they did that day.
The query currently shows hours for each day as a separate record. How can I make a query that shows all days on the same record?
Code:
SELECT[Employee Name],Notes,Sa,Su,M,T,W,Th,F
FROM tmpnewQB
GROUP BY[Employee Name],Notes,Sa,Su,M,T,W,Th,F
HAVING (((tmpnewQB.[Employee Name])="Doug"));
Employee Name Notes2 Sa Su M T W Th F
Doug IT 2
Doug IT 2
Doug IT 4
Doug IT 4.5
Doug IT 5.5
this is what I would like it to be
Doug IT 5.5 4.5 4 2 2
DougP
![[r2d2] [r2d2] [r2d2]](/data/assets/smilies/r2d2.gif)