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
Hi ALL, I have a module where a line item (Assignments column) is formatted by a large ‘Projects’ list. Each record is assigned to a Project and this module is published to a UX page. When users apply a filter on the Assignments column, the filter dropdown displays the entire Projects list (since the column is…
Hi ALL, In my model, I have Need stored at a 'D3' RS Group level. I need to use this Need in another module at the G5 Location level. I currently have a mapping module where each G5 Location maps to a D3 RS Group. This Module uses D2 Role as dimension. but the line item I've to find the RS Group (Find D3 RS Group = 'FIND…
I couldn't find any formula to do this, but I want a way to put on the page/grid the connection details. This is so I know what connection I'm in rather than going into Connections details to see it. Is there an XL3 formula to return this value?