Skip to main content Skip to complementary content

exportData method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.

exportData(options, callback)

Exports data of the underlying hypercube in OOXML or CSV format.

Information noteThe entire hypercube is exported, not just the current data-page.
Information noteDownload to Excel with enhanced table formatting is not supported via the API.

Version history

Version history
Version state Details
Introduced 2.1

Parameters

options

Type: Object

Optional.

Properties:

options object properties
Name Type Description
format String

Data format. Can be one of:

  • OOXML: open XML, default
  • CSV_C: comma separated CSV
  • CSV_T: tab separated CSV
filename String

This parameter is optional and only used in desktop.

Sets the name of the exported file when downloaded.

Example: filename(guid).xlsx

state String

Can be:

  • A: all values
  • P: possible values (default)
download Boolean Automatically start download of file (with window.open).

callback

Type: Function

Optional.

Callback function returning the link to the exported file.

Example

Example:  

var qTable = qlik.table(this);

var $exportButton = $( document.createElement('button'));
$exportButton.html('Export');
$exportButton.bind('click', function (  ) {
			qTable.exportData({download: true});
		});
$element.append($exportButton);
		

Example: Using AngularJS in a Qlik Sense visualization extension.


//Main script:
...
paint: function ( ) {
		//setup scope.table
		if ( !this.$scope.table ) {
		this.$scope.table = qlik.table( this );
		}
	}
...

//In your template:
<button ng-click="table.exportData({download:true})">Create Excel file</button>
		

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!