Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Me gustaria saber como hacer un inner join con 2 o mas tablas en excel, por ejemplo. Tengo un Excel con varias hojas, y la columna que las uniria se llama Cod.
LOAD fecha_desde,
fecha_hasta,
codigo_edificio as Cod,
edificio,
referencia,
observaciones,
periodicidad
FROM
(ooxml, embedded labels, table is Base);
LOAD idCita,
Contratista,
Upper(Cod) as Cod,
Edificio,
Tipo,
Dia,
Hora,
TP,
Tipo1,
Estado,
Acc
FROM
(ooxml, embedded labels, table is Feb);
Marque en rojo las columnas por las cuales quiero unir estas tablas.
Para lograr en fin una sola tabla y trabajar con ella desde el script.
Gracias!
Table1:
LOAD fecha_desde,
fecha_hasta,
codigo_edificio as Cod,
edificio,
referencia,
observaciones,
periodicidad
FROM
(ooxml, embedded labels, table is Base);
inner join (Table1)
LOAD idCita,
Contratista,
Upper(Cod) as Cod,
Edificio,
Tipo,
Dia,
Hora,
TP,
Tipo1,
Estado,
Acc
FROM
(ooxml, embedded labels, table is Feb);
Pude realizar el INNER JOIN de la siguiente manera:
Base:
LOAD fecha_desde,
fecha_hasta,
codigo_edificio as Cod,
edificio,
referencia,
observaciones,
periodicidad
FROM
(ooxml, embedded labels, table is Base);
Inner Join (Base)
Datos:
LOAD idCita,
Contratista,
Upper(Cod) as Cod,
Edificio,
Tipo,
Dia,
Hora,
TP,
Tipo1,
Estado,
Acc
FROM
(ooxml, embedded labels, table is Datos);
Hello,
Thank you for posting in the Qlik Community. We value your participation.
We ask that you post questions in our general forums using English, as noted in the Community Guidelines. You may post in Spanish in the Qlik en Español group.
For this reason, I am moving this thread to the Qlik en Español group. You may need to join the group in order to view posts and participate there. Simply click the Join Group button on the group page and a group administrator will approve your membership.
Feel free to let me know if you have any questions.
Regards,
Qlik Community Team