Hello,
I think you will recommend a UNION query on this, but let me give it a shot. Is there an easier way? What's the best way.
I have a main extract file, that is linked, so it will refresh with new data on a daily basis. I am creating a daily report.
I have three queries, File Complete, Files Received, PROD Files Received.
Fields are Customer, Task, Task Completed Date.
I want to summarize in a report in this output and have it pull X (count of tasks for each day)
Mon Tue Wed Thur Fri
Files Received X X X X X
Files Completed X X X X X
PROD Files Received X X X X X
What do you think? Do I still use a SQL Union statement? I want a nice summarized report and I've already put a condition in the queries that will pull tasks completed for the current week.
Eg: DatePart("ww", [End Date]) = DatePart("ww", Date()) and Year( [End Date]) = Year(Date())
Thanks for the help.