OK, I have a bit of a problem...
1. I'm using MS Access 2000 (sorry, forgot to mention that vital vittle of info)
2. The above solution uses DAO to access the database (I'm pretty sure), but I can't find anywhere to load the DAO libraries in the script editor for Access...
I'm gonna try to convert this over to ADO...Tomorrow. Will this work? Is there a better/easier way? I'm looking for a confirmation, at least; a bit of code would be much appreciated...
Before any of you answer, let me clarify the problem...
(I genericized (sic) the fields for ease of explanation)
An Access 2000 database I have a table called 'Management' with the fields 'date', 'name', 'hours', 'project', 'phase'
I am trying to run a report grouped by phase, and that shows the total hours for each phase, and I need to sum a grand total of all phases, except 1. (see example below)
Code:
*********Example Report (simplified)************
Phase Hours
Planning 5
Development 18
Concept 10
-------------------
Total 28 (excluding 'planning' phase)
***************************************************
I hope that this clarifies what I'm looking for...
jason