Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour,
Je travaille sur Qlikview v 12.10.20200.0.SR4
Je cherche à faire un MapSubstring. Donc j'ai besoin de faire mon MAPPING LOADavant. Qlikview me retourne une erreur inconnue sur MAPPING LOAD lors du rechargement.
Voici le script utilisé :
encoding:
MAPPING
LOAD original,
conversion as url
FROM
[..\05_data_externe\encoding.xlsx]
(ooxml, embedded labels, table is Feuil1);
Ce MAPPING LOAD fonctionne pour une autre appli. Je ne comprends pas pourquoi le comportement est différent.
En pièce jointe, la copie écran de l'erreur.
Merci,
Kevin
Si tu le fais en 2 fois, tu as le même message ?
encoding_temp:
//MAPPING
LOAD original,
conversion as url
FROM
[..\05_data_externe\encoding.xlsx]
(ooxml, embedded labels, table is Feuil1);
encoding:
MAPPING
LOAD original,
url
RESIDENT encoding_temp;
drop table encoding_temp;
Si tu le fais en 2 fois, tu as le même message ?
encoding_temp:
//MAPPING
LOAD original,
conversion as url
FROM
[..\05_data_externe\encoding.xlsx]
(ooxml, embedded labels, table is Feuil1);
encoding:
MAPPING
LOAD original,
url
RESIDENT encoding_temp;
drop table encoding_temp;
C'est parfait Laurent ! Je ne comprend pas pourquoi mais ça marche !
Merci encore !
Kevin