Hi,
I use Linked Report with some fixed visible value in Connected parameter but the link report error. The 2nd parameter (the one has mydbr_param_prev1 in query) read the 1st param without single quote so it recognize previous parameter value like a column, not the value.
My 2nd parameter:
select
Brandas ID,
Brandfrom Index.Index_Category where Category = mydbr_param_prev1;
My Linked report works:
select 'dbr.report', 'new_popup', 'ID', 'inCat<=Cat', inBrand<="";
But this does not work:
select 'dbr.report', 'new_popup', 'ID', 'inCat*=Cat', inBrand*="";
The error:
Unknown column 'Mobile' in 'where clause'
SQL: select <code>Brand</code> AS ID, <code>Brand</code> from Index.Index_Category where Category=Mobile;
Thanks,