Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ar5
Partner - Contributor III
Partner - Contributor III

Visual Export with Current Selections

We are using capability API to export data into excel, pdf and image in Qlik Sense. Is there a way to inject 'Current Selections' into the object before exporting? If not possible, can we use .NET sdk 

app.visualization.get(attrs.id).then(function (vis) {
                  vis.exportData().then(function (link) {
                    console.log("Excel Download link", link);
                    window.open(link);
                    var title = modal.layout.qMeta.title;
                    $("#download_file").attr("href", link);
                    $("#download_file").show();
                  });
                });
Labels (2)
0 Replies