Hi, I want to create report link on total column of crosstab. My scenario is I want to have report link in each Sales value (that's OK), and a report link for value of all days that presents in total column of crosstab.
-- This is for each column in crosstab
select 'dbr.report', 'sp_DBR_sales_details', 'new_popup', '[Sales]', 'startDate=[Date]', 'endDate=[Date]';
-- what column's reference to create in total column?
select 'dbr.report', 'sp_DBR_sales_details', 'new_popup', '[???]', 'startDate=[Date]', 'endDate=[Date]';
select 'dbr.crosstab', 'Date';
select 'dbr.hsum', 'Sales';
select Category, Invoice_Date as 'Invoice Date[Date]', Sales from database;
Thanks,