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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
emna_hassassi
Partner - Contributor
Partner - Contributor

Load inline

Bonjour, j'ai ce code

Source:

LOAD * INLINE [

Source_

Month

RQR

YTD

MAT

];

et j'ai un tableau d'ou je veux qu'il affiche , avec ce filtre type :

avec le type 'D' ==> Month/RQR/YTD/MAT

avec le type 'T' ==> RQR/YTD/MAT

comment je peux mettre deux conditions d'affichage , c'est à dire supprimer le Month dans la dimension Source_

merci de m'aider.

Labels (1)
11 Replies
kevinchevrier
Partner - Creator III
Partner - Creator III

En enlevant la ligne 3 et 4 de tes 2 onglets, voici un exemple de script que tu peux utiliser :

VENTE :

LOAD Période as Source_,

     RQR,

     YTD,

     MAT,

     [Mar-2017] as Month,

     'G' as TYPE_VENTE

FROM

(biff, embedded labels, header is 1 lines, table is [vente g$]);

join

LOAD Période as Source_,

     RQR,

     YTD,

     MAT,

     'D' as TYPE_VENTE

FROM

(biff, embedded labels, header is 1 lines, table is [vente d$]);

emna_hassassi
Partner - Contributor
Partner - Contributor
Author

thank you