Hi I have an employee attendance table that consists of:
EmployeeID, DateTime
I need to create a report of attendance for all employees for a date range (by default a month), with the employee list running vertically (showing all employees) and the dates running across horizontally (all days over the report period).
If a user has one or more entries in the attendance table on any of the days, then they will be listed as '1' in the report. If they have no entries on any particular day in the attendance table, they will be listed as '0' for that particular column (i.e. they will be absent as there is no data in the attendance table for that employee for that day).
I would also like a total row for the employee's days present, and also the number of employees (this would mean totalling the rows, and a total for the columns).
It would also be nice, as a final option, to have the day as opposed to the actual date running across horizontally which I guess would be re-numbering the date array from 1 to 28,29,30 or 31 depending on the number of dates in the array.
My SQL capability is limited and would greatly appreciate help on the above.
Thanks in advance