It's been a while since I created charts (back in Access 97)and this is the first time I have done it in Access 2000. I set up a chart using a query that contains two fields,
Activity_Date and Amount
02-Feb-2004 50
05-Feb-2004 27
06-Feb-2004 32
10-Feb-2004 40
The Chart Source SQL Statement is
SELECT Activity_Date, Amount FROM qryActivity
This result puts in dates that don't exist to fill in the gaps between 02-Feb and 05-Feb as well as between 06-Feb and 10-Feb. We don't want this, all we want are the exact dates we have data for. I remember encountering this problem in Excel and the workaround I used there was to change the date format to Text. I tried that in Access and it didn't work. I then put a letter before the date as in D04-Feb-2004 and this worked, however, I don't want the D to display on the chart. When I tried a mid function, it reverted to filling in the gaps. Any suggestions would be greatly appreciated.
Activity_Date and Amount
02-Feb-2004 50
05-Feb-2004 27
06-Feb-2004 32
10-Feb-2004 40
The Chart Source SQL Statement is
SELECT Activity_Date, Amount FROM qryActivity
This result puts in dates that don't exist to fill in the gaps between 02-Feb and 05-Feb as well as between 06-Feb and 10-Feb. We don't want this, all we want are the exact dates we have data for. I remember encountering this problem in Excel and the workaround I used there was to change the date format to Text. I tried that in Access and it didn't work. I then put a letter before the date as in D04-Feb-2004 and this worked, however, I don't want the D to display on the chart. When I tried a mid function, it reverted to filling in the gaps. Any suggestions would be greatly appreciated.