I am having problems in using Access 2000 ADP to show a graph on a form. I tried to show a bar graph of daily sales for two stores for a selected month.
The Sales2StoreGraph_sp query that I am using is:
SELECT
CONVERT(char(10), BusinessDate, 101) as BDate,
ROUND StoreASales as A,
ROUND...