Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Field Not Found After Concatenation

Hi to all

I just made a concatenation but unfortunately when I up load the data the NOT EXISTS(VenCodCliente, VenCodCliente) fields are missing:

Ventas:
LOAD
...,
... AS VenMes,
... AS VenCodCliente,
... AS VenNomCliente
FROM [Dropbox Ventas Inventarios];

CONCATENATE (Ventas)
LOAD
VenCodCliente,
VenNomCliente
FROM
[Clientes]
WHERE
NOT EXISTS(VenCodCliente, VenCodCliente) //the key for not adding duplicates in the CONCATENATE.
;

 

Any ideas?

 

Captura de Pantalla 2019-05-07 a la(s) 2.20.56 p. m..png

 

Labels (2)
1 Solution

Accepted Solutions
Marcos_rv
Creator II
Creator II

LOAD
Code as VenCodCliente,
Name as VenNomCliente

FROM [lib://Clientes (qlikcloud_qlikid_aholguininflex)]
(html, utf8, embedded labels, table is @1) Where Not Exists(VenCodCliente,Code ); // here!!!!

 

ESTO SE HACE PORQUE TU SEGUNDA TABLA NO TIENE EL CAMPO CARGADO CON DICHO NOMBRE Y TUVISTE QUE RENOMBRAR.

 

saludos!!!

 

View solution in original post

6 Replies
Marcos_rv
Creator II
Creator II

Ventas:
LOAD
...,
... AS VenMes,
... AS VenCodCliente,
... AS VenNomCliente
FROM [Dropbox Ventas Inventarios];

 

 

TRY THIS:

CONCATENATE (Ventas)
LOAD
Code as VenCodCliente,
Name VenNomCliente
FROM
[Clientes]
WHERE
NOT EXISTS(VenCodCliente, Code) 
;

SALUDOS!!!

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try this.

Where Not Exists(VenCodCliente);

If this doesnt work, reload without exists condition and check if the error is pointing to anything else or just exists condition.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

Hi

I just reload and it is the condition that you suggest... Any other idea?

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(VenCodCliente);

 

Captura de Pantalla 2019-05-07 a la(s) 2.20.56 p. m..png

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try the one solution which @Marcos_rv  gave.

 

Where not exists(VenCodCliente,Code);

 

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Marcos_rv
Creator II
Creator II

LOAD
Code as VenCodCliente,
Name as VenNomCliente

FROM [lib://Clientes (qlikcloud_qlikid_aholguininflex)]
(html, utf8, embedded labels, table is @1) Where Not Exists(VenCodCliente,Code ); // here!!!!

 

ESTO SE HACE PORQUE TU SEGUNDA TABLA NO TIENE EL CAMPO CARGADO CON DICHO NOMBRE Y TUVISTE QUE RENOMBRAR.

 

saludos!!!

 

Anonymous
Not applicable
Author

Mil gracias por tu ayuda!!!!!!