Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi to all!!
On the next image, a table that has added aditional info from another table by concatenation process. Importante to mention that the second table is going to be Load further on.
I need to take away the duplicates after the concatenation.
Can someone help me with the script and steps to do so? If its possible I need to see the code as it has to be write in the script... I'm very new
My bad, it was a mistake in my previous code.
[Ventas]:
LOAD
Cliente as VenCodigoCliente,
"Nombre 1" as VenNomCliente,
FROM
[lib://Dropbox - alejandro@inflexion.com.co (qlikcloud_qlikid_aholguininflex)/Zona K/Ventas e Inventarios/VentasI.XLSX]
(ooxml, embedded labels, table is Sheet1)
;
Concatenate (Ventas)
LOAD
Code as VenCodigoCliente,
Name as VenNomCliente
FROM
[lib://Clientes (qlikcloud_qlikid_aholguininflex)] (html, utf8, embedded labels, table is @1)
WHERE
NOT EXISTS(VenCodigoCliente, Code ) //Use Code not VenCodCliente as 2nd parameter
;
Hi
It says the field does not exist...
I´m sending the text from the script, if you may helpmeet I really appreciate!!!!
[Ventas]:
LOAD
Cliente as VenCodigoCliente,
"Nombre 1" as VenNomCliente,
FROM [lib://Dropbox - alejandro@inflexion.com.co (qlikcloud_qlikid_aholguininflex)/Zona K/Ventas e Inventarios/VentasI.XLSX]
(ooxml, embedded labels, table is Sheet1);
Concatenate (Ventas)
LOAD
Code as VenCodCliente,
Name as VenNomCliente
FROM [lib://Clientes (qlikcloud_qlikid_aholguininflex)] (html, utf8, embedded labels, table is @1)
WHERE NOT EXISTS(VenCodigoCliente, VenNomCliente);
Bruno hi
I fix the mistake but unfortunately it still with out working... Any idea?
My bad, it was a mistake in my previous code.
[Ventas]:
LOAD
Cliente as VenCodigoCliente,
"Nombre 1" as VenNomCliente,
FROM
[lib://Dropbox - alejandro@inflexion.com.co (qlikcloud_qlikid_aholguininflex)/Zona K/Ventas e Inventarios/VentasI.XLSX]
(ooxml, embedded labels, table is Sheet1)
;
Concatenate (Ventas)
LOAD
Code as VenCodigoCliente,
Name as VenNomCliente
FROM
[lib://Clientes (qlikcloud_qlikid_aholguininflex)] (html, utf8, embedded labels, table is @1)
WHERE
NOT EXISTS(VenCodigoCliente, Code ) //Use Code not VenCodCliente as 2nd parameter
;