Hi Guys,
I have a Webi Report (BO 4.1) with multiple tabs. Each tab has an input control for the "Products" object. I want the user to be able to select input control for one tab that will automatically apply to the other tabs.
Now, I found a possible solution to this problem in one of the SCN Posts - User input control for more than one tab in webI
The post redirects to the following link for the solution - http://davidlai101.com/blog/2013/08/13/web-intelligence-input-control-that-affects-all-tabs/
As directed in the solution, I created a new "Summary" tab with "Products" as the input control and then created 2 variables shown below.
Variable 1: Selected Products
= If( Pos(ReportFilterSummary("Summary");"Products In List { ") > 0)
Then Substr(ReportFilterSummary("Summary");Pos(ReportFilterSummary("Summary");
"Products In List { ")+ Length("Products In List { ");999)
Else ""
Variable 2: Products Filter
=If(Match([Selected Products];[Products]+"*") Or Match([Selected Products];"*, "+[Products]+"*") Or [Selected Products]="") Then 1 Else 0
Then, I used the "Products Filter" variable with a selected value of "1" as the filter for all the other tabs.
The Products object has the following values -
Bank
Bank Credit Card
Bank Deposits
Bank Real Estate.
The issue I am facing is - When I select the Products (Input Control) as "Bank Credit Card", I am also getting results for "Bank". Similarly, when I select the Products as "Bank Deposits", I am also getting results for "Bank" and so on...
Could anyone please help me figure out the issue?