<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Unir consulta SQL y Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1659881#M456042</link>
    <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Hola, Necesito de su ayuda en generar la unión entre consulta SQL y Excel, con esto generar el campo TIPO y completar con otro campo el valor que la llave no encuentre en el excel, escrito en destacado en amarillo NO.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Espero su ayuda&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1.JPG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/25881i0E9543ABFF683FDA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Dec 2019 18:32:15 GMT</pubDate>
    <dc:creator>fdoherrera</dc:creator>
    <dc:date>2019-12-20T18:32:15Z</dc:date>
    <item>
      <title>Unir consulta SQL y Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1659881#M456042</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Hola, Necesito de su ayuda en generar la unión entre consulta SQL y Excel, con esto generar el campo TIPO y completar con otro campo el valor que la llave no encuentre en el excel, escrito en destacado en amarillo NO.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;&lt;FONT&gt;Espero su ayuda&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="1.JPG" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/25881i0E9543ABFF683FDA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2019 18:32:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1659881#M456042</guid>
      <dc:creator>fdoherrera</dc:creator>
      <dc:date>2019-12-20T18:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Unir consulta SQL y Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1660647#M456043</link>
      <description>&lt;P&gt;Hola, puedes cargar los datos del Excel y luego comprobar con Exists, la idea sería algo así:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Datos:
LOAD LOCAL, TIPO From [Excel];

Concatenate (Datos)
LOAD ITEM, LOCAL, If(Exists(LOCAL), 'SI', NO') as TIPO From SQL;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;O puedes cargar 2 tablas distintas para hacer chequeos cruzados:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;chkSQL:
LOAD LOCAL as ckhSQL From [SQL];

chkExcel:
LOAD LOCAL as ckhExcel From [Excel];

Datos:
LOAD LOCAL, If(Exists(LOCAL, chkSQL), 'SI, 'NO') as TIPO From [Excel];

Concatenate (Datos)
LOAD ITEM, LOCAL, If(Exists(LOCAL,chkExcel), 'SI', NO') as TIPO From [SQL];

DROP Table chkSQL;
DROP Table chkExcel;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Por cierto, hay un foro dedicado para consultas en español:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-en-Espa%C3%B1ol/gp-p/spanish-group" target="_blank"&gt;https://community.qlik.com/t5/Qlik-en-Espa%C3%B1ol/gp-p/spanish-group&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Dec 2019 07:34:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1660647#M456043</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-12-26T07:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Unir consulta SQL y Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1660992#M456044</link>
      <description>&lt;P&gt;gracias por tu ayuda, al final me incline por hacer un mapping.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2019 12:37:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Unir-consulta-SQL-y-Excel/m-p/1660992#M456044</guid>
      <dc:creator>fdoherrera</dc:creator>
      <dc:date>2019-12-27T12:37:59Z</dc:date>
    </item>
  </channel>
</rss>

