I have data showing sales by salesperson then by client. I want to show both year to date and for the last two weeks. I started out having two datasets and was going to put them into two tables side by side. But the users want to see one table. They want to see a report grouped by salesperson, then by client. If the client had no sales for the last two weeks, it should show $0. The YTD date will always have a value (because my data for clients that have sales for the year).
The only way I could think of is joining to queries together to get one dataset with a column for YTD sales and a column for last 2 weeks. I would run one query to pull YTD data and then left join it to another query which shows 2 week data based on the client ID. I'm using SSRS 2008 (not R2) and BIDS 2005. We're restricted to using these tools because of compatibility with another application.
Any other suggestions on a better way to do this?
Milissa Hartwell