Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sekadam
Contributor II
Contributor II

Automatiser l envoi du tableau sur excel

Bonjour a tous,

Je demarre sur QlikView.

J 'ai cree mon dashbord sur Qlik. Je souhaite faire une extraction de manière automatique sur excel  sans passer par le petit bouton excel de Qlik.

Comment puis je faire ?

 

Je souhaite aussi planfier un rafraichissement chaque soir de manière automatique.

Comment puis je faire?

 

merci d avance de votre aide

1 Solution

Accepted Solutions
danilostochi
Creator II
Creator II

//Hi, in script, you can save as .csv
tb01:
LOAD * Inline [
id, name
01, danilo
02, danilo2
03, danilo3
];
STORE tb01 into C:\Users\Danilo\Downloads\tb01.csv (txt, delimiter is ';')


//or search about macro example https://community.qlik.com/t5/QlikView-Scripting/VB-Macro-to-Export-Table-to-CSV-with-No-headers/td-...

 

+55(44) 9 9993-3605, WhatsApp
E-Mail or Skype - danilo16stochi@hotmail.com

View solution in original post

2 Replies
danilostochi
Creator II
Creator II

//Hi, in script, you can save as .csv
tb01:
LOAD * Inline [
id, name
01, danilo
02, danilo2
03, danilo3
];
STORE tb01 into C:\Users\Danilo\Downloads\tb01.csv (txt, delimiter is ';')


//or search about macro example https://community.qlik.com/t5/QlikView-Scripting/VB-Macro-to-Export-Table-to-CSV-with-No-headers/td-...

 

+55(44) 9 9993-3605, WhatsApp
E-Mail or Skype - danilo16stochi@hotmail.com
sekadam
Contributor II
Contributor II
Author

Bonjour 

 

Merci pour votre réponse.

J'aurai une autre question : 

Dans mon script, je dois récupérer les colonnes dont la date est vide (voir ex). Comment je peux écrire ma condition dans mon script pour que QlikView ne charge que les informations de la clé 2 ?

ex    CLE -- PRODUIT --DATE

         1     --  telephone -- 20/05

         2 --     tv   --                  

         3 --   fauteuil -- 12/05

MERCI DE VOTRE AIDE