<?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 Re: Función &amp;quot;Not in&amp;quot; en QlikView in Español</title>
    <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070888#M10704</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Mónica:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tendrías que ver algo parecido a esto &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114176_Captura.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Esto es un recorte de una conversación no cerrada&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;Joaquñin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Feb 2016 14:01:40 GMT</pubDate>
    <dc:creator>Joaquin_Lazaro</dc:creator>
    <dc:date>2016-02-10T14:01:40Z</dc:date>
    <item>
      <title>Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070879#M10695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;He buscado bibliografía y discusiones de cómo aplicar la función Exists, pero no me ha funcionado y no he podido detectar cuál es mi error.&amp;nbsp; Tengo una base de datos donde dependiendo de lo contenido en una dimensión se ejecuta una acción, por ejemplo:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Si la dimensión Pais contiene países como Afganistan, Cuba, USA, entonces que ponga la palabra "Aprobado", sino, entonces que ponga la palabra "Pendiente".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;¿Me podrían colaborar por favor?&amp;nbsp; Gracias!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2016 15:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070879#M10695</guid>
      <dc:creator />
      <dc:date>2016-02-08T15:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070880#M10696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Monica,&lt;/P&gt;&lt;P&gt;Puedes subir el código que estás usando para identificar si se encuentra ahí el error&lt;/P&gt;&lt;P&gt;y en lo posible un ejemplo de los datos en los cuales trabajas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;MB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2016 15:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070880#M10696</guid>
      <dc:creator>mbernales</dc:creator>
      <dc:date>2016-02-08T15:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070881#M10697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Monica, no se si entendi bien pero su es lo que creo, la funcion exist no te sera de ayuda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAra hacer lo que necesitas, es cuestion de comprar el campo Pais con los paises que quieres que contenga. Por ejemplo:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MiTabla:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;if(match(Pais, 'US,'Afganistan', 'Cuba') &amp;gt; 0, 'Aprobado', 'Pendiente') AS CategoriaPais&lt;/P&gt;&lt;P&gt;FROM miArchivo.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tambien puedes usar un Mapping Load. Esta funcion esta optimizada mejor cuando necesitas mapear muchos valores.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por otro lado, la funcion "exists()" es utilizada para cargar solo valores de una tabla que ya han sido cargados previamente en otra tabla.&lt;/P&gt;&lt;P&gt;Ej:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a:&lt;/P&gt;&lt;P&gt;Load Client FROM miArchivo.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b:&lt;/P&gt;&lt;P&gt;Load Client, Venta FROM MiArchivo2.qvd (qvd)&lt;/P&gt;&lt;P&gt;WHERE EXISTS(Client);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;En este caso, la tabla b, solo cagara las venta de clientes que se hayan cargado previamente en la tabla a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;Juan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2016 15:36:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070881#M10697</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2016-02-08T15:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070882#M10698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hola,&amp;nbsp; esto es lo que estoy haciendo:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;PrefijoPais.cvs = Listado donde están todos los países del mundo con el número del prefijo y el número de caracteres después del prefijo que se requiere trabajar&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Pais,CaracteresPrefijo,CaracteresConsecutivo&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Afganistan,2,3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Africa,2,3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Algeria,3,3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;...&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Jamaica,4,3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Kenya,3,3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;...&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Venezuela,2,3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Zimbawe,3,6&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Map_Prefijos:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Mapping&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD Pais, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CaracteresPrefijo&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;PrefijoPais.csv&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//Trae el número de caracteres después del prefijo&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Map_Prefijos_1:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Mapping&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD PaisDestino, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CaracteresConsecutivo&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;PrefijoPais.csv&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(txt, codepage is 1252, embedded labels, delimiter is ',', msq);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Trafico_Tmp:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD Distinct&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Lote,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Pais,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;NumeroDestino, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;left(NumeroDestino,ApplyMap('Map_Prefijos',Pais) ) as Prefijo,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('Map_Prefijos',Pais)&amp;nbsp; as Prefijo_Num, &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;mid(NumeroDestino,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('Map_Prefijos',Pais) + 1,&amp;nbsp; ApplyMap('Map_Prefijos_1',Pais)) as Caracter,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Year(Fecha) as Año&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt; FROM&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;[..\..\..\Produccion\DataMining\Mineria\Qvd\Trafico_*_tra.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(qvd)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Where Year(Fecha) = '2016';&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Trafico_Tmp_0:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD Distinct&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Lote,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Prefijo,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;'('&amp;amp;Concat(Distinct Caracter,'|',Caracter)&amp;amp;').*,Adicionar'&amp;nbsp; as Exp_Reg_1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Resident Trafico_Tmp&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Group by &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Lote,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Prefijo;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;DROP Table Trafico_Tmp;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Trafico:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD Distinct&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; subfield(Lote,'-',1)&amp;amp;';'&amp;amp;subfield(Lote,'-',2)&amp;amp;';'&amp;amp;subfield(Lote,'-',3)&amp;amp;',^'&amp;amp;Prefijo&amp;amp;'.*'&amp;amp;Concat(Distinct Exp_Reg_1,'|')&amp;nbsp; as Exp_Reg&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt; Resident Trafico_Tmp_0&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; Group by &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; Lote,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp; Prefijo;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP Table Trafico_Tmp_0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Lo anterior lo aplicará para todos los países, pero requiero que para 5 países específicos no tome esta sentencia en "Trafico_Temp_0": &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;'('&amp;amp;Concat(Distinct Caracter,'|',Caracter)&amp;amp;').*,Adicionar'&amp;nbsp; as Exp_Reg_1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;sino ésta:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;', Adicionar' as Exp_Reg_1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Y además, que en "Trafico" para esos 5 países específicos la concatenación sea:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; subfield(Lote,'-',1)&amp;amp;';'&amp;amp;subfield(Lote,'-',2)&amp;amp;';'&amp;amp;subfield(Lote,'-',3)&amp;amp;',^'&amp;amp;Prefijo&amp;amp;'.*'&amp;amp;Exp_Reg_1)&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;as Exp_Reg&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Para el resto de países sea:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp; subfield(Lote,'-',1)&amp;amp;';'&amp;amp;subfield(Lote,'-',2)&amp;amp;';'&amp;amp;subfield(Lote,'-',3)&amp;amp;',^'&amp;amp;Prefijo&amp;amp;'.*'&amp;amp;Concat(Distinct Exp_Reg_1,'|')&amp;nbsp; as Exp_Reg&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Mil gracias!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Feb 2016 16:24:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070882#M10698</guid>
      <dc:creator />
      <dc:date>2016-02-08T16:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070883#M10699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tal y como te apuntaba Juan, yo también sugeriría utilizar la función match.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por ejemplo en "Trafico_Temp_0":&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;If(&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Match(Pais, 'US,'Afganistan', 'Cuba') &amp;gt; 0,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ', Adicionar',&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit; line-height: 1.5em;"&gt;'('&amp;amp;Concat(Distinct Caracter,'|',Caracter)&amp;amp;').*,Adicionar'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-family: inherit; font-size: 13.3333px; font-style: inherit; font-weight: inherit; line-height: 1.5em;"&gt;)&amp;nbsp; as Exp_Reg_1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recuerda:&lt;/P&gt;&lt;P&gt;Ten en cuenta que necesitas el campo Pais en la tabla origen de los datos si quieres evaluar el dato al cargarlo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por ejemplo, si quieres evaluar por país el campo Exp_Reg en la tabla Trafico, y los datos los cargas de la tabla &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;Trafico_Tmp_0, tendrás que dejar el campo Pais en esa tabla, o crearte un flag para identificar los registros correspondientes a esos paises.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Un saludo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 09:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070883#M10699</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-09T09:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070884#M10700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Mónica:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otra posiblidad es &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Acciones:&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; País, Acción&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Afganistán, Aprobado&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cuba, Aprobado&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trafico:&lt;/P&gt;&lt;P&gt;LOAD ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('Acciones', Pais, 'Pendiente') as Acción&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;La tabla de mapeo la puedes cargar Inline o desde un origen externo, como te sea más práctico.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;Joaquín&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 14:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070884#M10700</guid>
      <dc:creator>Joaquin_Lazaro</dc:creator>
      <dc:date>2016-02-09T14:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070885#M10701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Realmente lo que hice fue una mezcla entre lo comentado por Joaquín, Juan y Alex y me dio el resultado.&amp;nbsp; Muchas gracias! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Feb 2016 22:41:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070885#M10701</guid>
      <dc:creator />
      <dc:date>2016-02-09T22:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070886#M10702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfecto.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mónica, marca tu respuesta como correcta para cerrar el hilo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;Joaquín&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 07:39:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070886#M10702</guid>
      <dc:creator>Joaquin_Lazaro</dc:creator>
      <dc:date>2016-02-10T07:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070887#M10703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Joaquín, no me sale la opción de "Respuesta Correcta"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 13:20:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070887#M10703</guid>
      <dc:creator />
      <dc:date>2016-02-10T13:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070888#M10704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Mónica:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tendrías que ver algo parecido a esto &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114176_Captura.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Esto es un recorte de una conversación no cerrada&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saludos&lt;/P&gt;&lt;P&gt;Joaquñin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:01:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070888#M10704</guid>
      <dc:creator>Joaquin_Lazaro</dc:creator>
      <dc:date>2016-02-10T14:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070889#M10705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, gracias!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Feb 2016 14:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070889#M10705</guid>
      <dc:creator />
      <dc:date>2016-02-10T14:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Función "Not in" en QlikView</title>
      <link>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070890#M10706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola Mónica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cuando puedas cierra el hilo para dejar la consulta como solventada.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;En la respuesta que prefieras verás un icono que indica "Respuesta correcta" (veras una estrella verde), pulsando en él quedará el hilo definitivamente cerrado.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Los hilos cerrados ayudan a otros usuarios a saber que consultas efectivamente fueron contestadas. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias y un saludo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 13:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Espa%C3%B1ol/Funci%C3%B3n-quot-Not-in-quot-en-QlikView/m-p/1070890#M10706</guid>
      <dc:creator>alex_millan</dc:creator>
      <dc:date>2016-02-16T13:30:55Z</dc:date>
    </item>
  </channel>
</rss>

