Can we give the users to choose from a list of combinations for a view, while providing them with an option to export the view from a dashboard.
Regards,
Kunal
Not directly
If there are specific different views that you want the users to use, then you can set up different export buttons using the different views
Otherwise, you could set up a generic filter (and export) using parameters that are driven by the users
I hope that helps
David
Filtering Entries During Import or Export
You can customize your snapshot by filtering entries during the import or export of a region or a cache.
For example, use filters to limit the export of data to a certain date range. If you set up a filter on the import or export of a cache, the filter is applied to every single region in the cache.
The following example filters snapshot data by even numbered keys.
File mySnapshot = ...Region<Integer, MyObject> region = ...SnapshotFilter<Integer, MyObject> even = new SnapshotFilter<Integer, MyObject>() {@Override public boolean accept(Entry<Integer, MyObject> entry) { return entry.getKey() % 2 == 0; }};RegionSnapshotService<Integer, MyObject> snapsrv = region.getSnapshotService();SnapshotOptions<Integer, MyObject> options = snapsrv.createOptions().setFilter(even);// only save cache entries with an even keysnapsrv.save(mySnapshot, SnapshotFormat.GEMFIRE, options);learn more https://onlineitguru.com/tableau-online-training-placement.html
Can someone help me i am unable to login anaplan portal using my credentials
Dear Hive Mind, Do we have a way to get the history of a particular List Item, from its creation into a model up until its removal ? I am trying to chase when / how an item has been added into a model and how / when it would have been deleted and then recreated with the same code. Is there a pattern (manual or API) to get…
I have an action in a process which is getting failed since 2 days when run via CloudWorks with below error . No issues when run manually . Same error occurs when run manually but as a warning "Import complete but with failures" This action is running since almost a year without any issue . No change has been made to…