Hi,
I have dashboard with 5 bookmarks. In most analysis I'm using Supplier Name Column.
1) Is it possible to exclude specific 20 suppliers that were not taken into account in the analysis using a global filter on the dashboard?
At this point, each single analysis used a filter as Advanced SQL Filter:
"Supplier"."Supplier Name" NOT IN ('Name','Name2', ...)
2) Second question - It is possible to constrain supplier name on prompt?
When I'm using
SELECT "Supplier"."Supplier Name" FROM "Table Name" WHERE "Supplier"."Supplier Name" = 'Name Supplier'
FETCH FIRST 65001 ROWS ONLY
Work fine, but when I want exclude some suppliers with:
SELECT "Supplier"."Supplier Name" FROM "Table Name" WHERE "Supplier"."Supplier Name" <> 'Name Supplier'
FETCH FIRST 65001 ROWS ONLY
I have error: Runtime search results are not limited to SQL result
And I have still all suppliers.
Any suggestions?