I have two tables, one which records monthly billing expenses, the other stores budget levels at different points through the year. An example might look something like the following:
ExpenseTable:
Date Cost
3/28/03 $20,000
4/25/03 $25,000
5/30/03 $17,000
6/27/03 $22,000
7/25/03 $30,000
BudgetTable:
Date Budget
3/01/03 $0
4/15/03 $38,000
6/01/03 $70,000
9/15/03 $120,000
As you can see, the dates do not necessarily coincide between the two tables.
I then have a query which generates a running sum on expenses, giving me a cumulative burn for each billing date.
What I'd like to do is graph the cumulative burn data and the budget data on the same chart to create a visual comparison of monthly burn against projected budget. I don't know how to do that however. Any attempt I make at merging the data using a query just mangles the data and the Chart Wizard doesn't appear to permit drawing from two separate sources using different x-axis values (like an XY chart in Excel).
Any thoughts?
ExpenseTable:
Date Cost
3/28/03 $20,000
4/25/03 $25,000
5/30/03 $17,000
6/27/03 $22,000
7/25/03 $30,000
BudgetTable:
Date Budget
3/01/03 $0
4/15/03 $38,000
6/01/03 $70,000
9/15/03 $120,000
As you can see, the dates do not necessarily coincide between the two tables.
I then have a query which generates a running sum on expenses, giving me a cumulative burn for each billing date.
What I'd like to do is graph the cumulative burn data and the budget data on the same chart to create a visual comparison of monthly burn against projected budget. I don't know how to do that however. Any attempt I make at merging the data using a query just mangles the data and the Chart Wizard doesn't appear to permit drawing from two separate sources using different x-axis values (like an XY chart in Excel).
Any thoughts?