Table Data/Structure
How can I create a report that will display all dates between the StartDate and the EndDate and in the column underneath the date, put "8 hrs worked."
Thanks
-Rob
You're talking about generating data thats not contained in but can be derived from the dataset.
Your best bet is to do this in your query and return a row for every day and person. This looks like a job for a stored procedure or table valued function that will populate a temporary / in-memory table and return that as the dataset for the report.
No comments:
Post a Comment