Hi
I'm trying to link from a chart to a detail report, and I'm obviously doing something wrong..
This code generates a report and I can click on any line and that links to a detail report:
select 'dbr.hidecolumns', 'Contact';
select 'dbr.report', 'sp_DBR_AT_Loggedby', '[Logged By]', 'LoggedBy=Contact', 'BillStr=(BillStr)', 'BillEnd=(BillEnd)', 'DisplayName=Logged By', 'Company=(CustID)';
select top 10 ContactName as 'Logged By', count(Ticket) as 'Ticket Count', Contact
From #TMPworking_tickets
group by ContactName, Contact
order by count(Ticket) desc;
Which is perfect, except I'd like to display that initial summary as a bar graph, so..
select 'dbr.hidecolumns', 'Contact';
select 'dbr.chart', 'Bar3d', 'Top 10 Ticket Creators';
select 'dbr.report', 'sp_DBR_AT_Loggedby', '[Logged By]', 'LoggedBy=Contact', 'BillStr=(BillStr)', 'BillEnd=(BillEnd)', 'DisplayName=Logged By', 'Company=(CustID)';
select top 10 ContactName as 'Logged By', count(Ticket) as 'Ticket Count', Contact
From #TMPworking_tickets
group by ContactName, Contact
order by count(Ticket) desc;
Which generates a bar graph with exactly the same information, but it's no longer clickable to drilldown.
What am I missing?
Thanks
Eric