Forum Discussion
irismaessen
02-09-2023Data Pipeline
You can't do this directly as far as I know, but you can extract the filter jaql as a JSON array from one dashboard using your browser console and the following command:
json.stringify(prism.activeDashboard.filters.$$items)
You can then append this filter jaql to the url of the other dashboard you are loading to apply these filters:
<your dashboard url>/?filter=<the jaql extracted in the first step>
Some considerations:
Depending on how many filters you have set on your dashboard, the exported jaql can be long. You do not need every single element in this jaql to apply the correct filters, but sometimes you may need to experiment a bit to see what elements you can strip to shorten the jaql. Whatever you strip, ultimately the JAQL still needs to be valid JSON
You may need to URL encode your filter jaql.
Good luck!