Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
intergnek
Partner - Contributor III
Partner - Contributor III

Charger des données dans Qlik

Bonjour,

Je souhaite à l'aide de mon script de chargement remplir toute les cellules de la première colonne car au chargement dans Qlik Sense elles apparaissent vides.

Tableau au départ dans Excel

Vente.PNG

Et je veux le résultat ci-dessous dans Qlik

resultat.PNG

Votre aide me sera beaucoup précieuse.

Merci d'avance!

7 Replies
PrashantSangle

Use peek() while loading data.

try like

Load if(isnull(Pays),Pays,Pays) as Pays,Ville,Vente from tableName;

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
intergnek
Partner - Contributor III
Partner - Contributor III
Author

Where to place peek() ?

PrashantSangle

sorry my bad

Load if(isnull(Pays),Peek('Pays'),Pays) as Pays,Ville,Vente from tableName;


Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
intergnek
Partner - Contributor III
Partner - Contributor III
Author

Good, thank you Prashant Sangle

intergnek
Partner - Contributor III
Partner - Contributor III
Author

Please Prashant,

how can I group by Country ?

PrashantSangle

Where you want to show data group by? at what granularity?? How you want to show data?

Provide more detail.

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
intergnek
Partner - Contributor III
Partner - Contributor III
Author

Sale by country, I can do it in the graphics.

It's cool! thank you!