venkateshr28
New member
- Local time
- Yesterday, 23:43
- Joined
- Apr 2, 2019
- Messages
- 13
Hello Experts,
Need your help on desiging my first access query,
I am working on a Daily dashboard tracker for which i have 3 sheets in excel as mentioned below
Sheet1 = Attendance & Break dump
Sheet2 = Training and Meeting dump
Sheet3 = Headcount file with staff intime details day wise
I have imported those sheets in Access as tables and I am trying to get the Headcount sheet updated with Available hours, Break time, Training and Meeting minutes
Attendance and Break dump is little complicated, staff ABCD for date12/1/2018 will have multiple rows with type defined as Available hours, Break time against which start time, duration will be available
so far i have arrived at a SQL query as below and the type is not getting split to colums, there are 2 type (Available Hours, Break Time) this needs to be 2 columns and duration for respecitve to be updated.
SELECT [Bank ID], [Type], [Dates], SUM(Duration)
FROM Attendance_Break_data
GROUP BY [Bank ID], [Type], [Dates]
ORDER BY [Dates], [Bank ID];
Can some one help on this please.
Since i am working on restricted data i am not able to share the same here, please bare with me.
Need your help on desiging my first access query,
I am working on a Daily dashboard tracker for which i have 3 sheets in excel as mentioned below
Sheet1 = Attendance & Break dump
Sheet2 = Training and Meeting dump
Sheet3 = Headcount file with staff intime details day wise
I have imported those sheets in Access as tables and I am trying to get the Headcount sheet updated with Available hours, Break time, Training and Meeting minutes
Attendance and Break dump is little complicated, staff ABCD for date12/1/2018 will have multiple rows with type defined as Available hours, Break time against which start time, duration will be available
so far i have arrived at a SQL query as below and the type is not getting split to colums, there are 2 type (Available Hours, Break Time) this needs to be 2 columns and duration for respecitve to be updated.
SELECT [Bank ID], [Type], [Dates], SUM(Duration)
FROM Attendance_Break_data
GROUP BY [Bank ID], [Type], [Dates]
ORDER BY [Dates], [Bank ID];
Can some one help on this please.
Since i am working on restricted data i am not able to share the same here, please bare with me.