When I link from "report one" to "report two" and "report one" is not a chart(i.e table) the command dbr.report works fine. Here is and example call:
SELECT 'dbr.report', 'sp_pt_32_visit_list_report', 'new_popup','[numberofvisitsinyear]', 'param_companyid=[companymemberid]';
If report one is a chart and I want a drill through to another report then it will not work when I click on chart column. Here is and example call:
SELECT 'dbr.chart', 'MScolumn', '';
SELECT 'dbr.report', 'sp_pt_89_species_analysis_detail', 'new_popup','[totalyearspeciecount]', 'param_selectedcompanyid=(param_selectedcompanyid)';
Is there anything obvious I'm missing ?