Hi,
I have a requirement from client about feature to only show Link Report in row with col1 = 'ABC' or other. From now, the linked report is shown in all rows.
Can you please add this function.
Thanks,
Hi,
I have a requirement from client about feature to only show Link Report in row with col1 = 'ABC' or other. From now, the linked report is shown in all rows.
Can you please add this function.
Thanks,
Hi team,
I've tested with this function but got error in the following case. Let look at simple report:
DROP PROCEDURE IF EXISTS sp_DBR_Demo_sum_error
$$
CREATE PROCEDURE `sp_DBR_Demo_sum_error`()
BEGIN
select 'dbr.report', 'sp_DBR_Demo_sum_error', 'new_popup', '[Customer]', '"Link1"';
select 'dbr.report', 'sp_DBR_Demo_sum_error', 'new_popup', '[Customer]', '"Link2"';
select 'dbr.report', 'sp_DBR_Demo_sum_error', 'new_popup', '[Customer]', '"Link3"', 'show_link=([Customer]=="B")';
select 'A' as Customer, 123 as Val
union
select 'B' as Customer, 456 as Val
union
select 'C' as Customer, 789 as Val;
END
$$
Links don't show when I have more than 2 linked reports.
Now I still use 3039 build number.
Thanks,
The issue has been fixed in the latest build. Just run the updater.
Thanks for reporting this.
--
myDBR Team
You must log in to post.