Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exporting data into excel without macro using action

Good morning

I need to automate the export data into EXCEL file some fields of a QVD file.

can we do this without using macros as triggers?

in the Modify script after the Load event of theQVD files which commands should I enter?

How to export data into excel through edit script commands while loading data into dashbord

thanks

1 Reply
felipedl
Partner - Specialist III
Partner - Specialist III

Hi Prasad,

You could store the data into a txt file, and the person would open it on Excel.

Something like:

Products:

Load * Inline

[

Client,Mapping Code

A, 1200

B, 20140

C, 01100

D, 32140

];

// Creates the Products.txt file, with the data separated by commas.

store Products into Products.txt (txt);

Felipe