<?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: Create a different table that the table source with Qlikview script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045830#M920071</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan,&lt;/P&gt;&lt;P&gt;find attached solution take a look at the code and adapt it to your needs.&lt;/P&gt;&lt;P&gt;Solved via for loop with a nested while. Destination table with dummy is used to create empty table before starts loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this helps you and if you need anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Santiago&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORIGEN:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; Promotion,FechaA, FechaB,UR,Units&lt;/P&gt;&lt;P&gt;&amp;nbsp; Proj,'01-Oct-2015','01-Jan-2016',Venta A, 2498&lt;/P&gt;&lt;P&gt;&amp;nbsp; Proj,'01-Oct-2015','01-Jan-2016',Venta B, -5642498&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESTINATION_WITH_DUMMY:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; Promocion,Detalle, Unidades,Fecha&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dummy,Dummy,999,42856&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET v.Rows = NoOfRows('ORIGEN');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR i= 0 to v.Rows - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.DateFrom = NUM(DATE#(PEEK('FechaA',$(i),'ORIGEN'),'DD-MMM-YYYY'));&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.DateTo = NUM(DATE#(PEEK('FechaB',$(i),'ORIGEN'),'DD-MMM-YYYY'));&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.UR = PEEK('UR',$(i),'ORIGEN');&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.Unidades = PEEK('Units',$(i),'ORIGEN');&lt;/P&gt;&lt;P&gt;&amp;nbsp; DO WHILE (v.DateFrom &amp;lt; v.DateTo)&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.PromoCode = $(i) + 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; CONCATENATE(DESTINATION_WITH_DUMMY)&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Promocion ' &amp;amp; '$(v.PromoCode)' as Promocion,&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(v.UR)' as Detalle,&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(v.Unidades) as Unidades,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE('$(v.DateFrom)')&amp;nbsp;&amp;nbsp;&amp;nbsp; as Fecha&lt;/P&gt;&lt;P&gt;&amp;nbsp; AutoGenerate(1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.DateFrom = NUM(AddMonths('$(v.DateFrom)',1));&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOOP;&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;P&gt;//Delete dummy record&lt;/P&gt;&lt;P&gt;DESTINATION:&lt;/P&gt;&lt;P&gt;NOCONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * RESIDENT DESTINATION_WITH_DUMMY WHERE Detalle &amp;lt;&amp;gt; 'Dummy';&lt;/P&gt;&lt;P&gt;DROP TABLE DESTINATION_WITH_DUMMY;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Apr 2016 18:24:53 GMT</pubDate>
    <dc:creator>santiago_respane</dc:creator>
    <dc:date>2016-04-29T18:24:53Z</dc:date>
    <item>
      <title>Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045829#M920070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a QlikView Aplication that use a Oracle DB for get the data. In the DB I have one table like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura.JPG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/123095_Captura.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the aplication I need a talbe like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Captura2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/123091_Captura2.JPG" style="height: 161px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045829#M920070</guid>
      <dc:creator>juagarti</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045830#M920071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan,&lt;/P&gt;&lt;P&gt;find attached solution take a look at the code and adapt it to your needs.&lt;/P&gt;&lt;P&gt;Solved via for loop with a nested while. Destination table with dummy is used to create empty table before starts loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this helps you and if you need anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Santiago&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORIGEN:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; Promotion,FechaA, FechaB,UR,Units&lt;/P&gt;&lt;P&gt;&amp;nbsp; Proj,'01-Oct-2015','01-Jan-2016',Venta A, 2498&lt;/P&gt;&lt;P&gt;&amp;nbsp; Proj,'01-Oct-2015','01-Jan-2016',Venta B, -5642498&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESTINATION_WITH_DUMMY:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp; Promocion,Detalle, Unidades,Fecha&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dummy,Dummy,999,42856&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET v.Rows = NoOfRows('ORIGEN');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR i= 0 to v.Rows - 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.DateFrom = NUM(DATE#(PEEK('FechaA',$(i),'ORIGEN'),'DD-MMM-YYYY'));&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.DateTo = NUM(DATE#(PEEK('FechaB',$(i),'ORIGEN'),'DD-MMM-YYYY'));&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.UR = PEEK('UR',$(i),'ORIGEN');&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.Unidades = PEEK('Units',$(i),'ORIGEN');&lt;/P&gt;&lt;P&gt;&amp;nbsp; DO WHILE (v.DateFrom &amp;lt; v.DateTo)&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.PromoCode = $(i) + 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp; CONCATENATE(DESTINATION_WITH_DUMMY)&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Promocion ' &amp;amp; '$(v.PromoCode)' as Promocion,&lt;/P&gt;&lt;P&gt;&amp;nbsp; '$(v.UR)' as Detalle,&lt;/P&gt;&lt;P&gt;&amp;nbsp; $(v.Unidades) as Unidades,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE('$(v.DateFrom)')&amp;nbsp;&amp;nbsp;&amp;nbsp; as Fecha&lt;/P&gt;&lt;P&gt;&amp;nbsp; AutoGenerate(1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; LET v.DateFrom = NUM(AddMonths('$(v.DateFrom)',1));&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOOP;&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;P&gt;//Delete dummy record&lt;/P&gt;&lt;P&gt;DESTINATION:&lt;/P&gt;&lt;P&gt;NOCONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * RESIDENT DESTINATION_WITH_DUMMY WHERE Detalle &amp;lt;&amp;gt; 'Dummy';&lt;/P&gt;&lt;P&gt;DROP TABLE DESTINATION_WITH_DUMMY;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 18:24:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045830#M920071</guid>
      <dc:creator>santiago_respane</dc:creator>
      <dc:date>2016-04-29T18:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045831#M920072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Promotion, Fecha alta, Fecha baja, UR afectada, # de unidades&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Proyecto AppToIP J-15PS41, 01/10/2015, 01/01/2016, Venta de producto cliente B, -24097&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Proyecto AppToIP J-15PS41, 01/10/2015, 01/01/2016, Venta de producto cliente A, -426.6630075&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FinalTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD 'Promotion' &amp;amp; AutoNumber([UR afectada]) as Promotion,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [UR afectada] as detalle,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [# de unidades] as unidades,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; AddMonths([Fecha alta], IterNo()-1) as FECHA_REPORT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;While AddMonths([Fecha alta], IterNo()-1) &amp;lt;= [Fecha baja];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/123172_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 19:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045831#M920072</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-29T19:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045832#M920073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loved your solution, Way better than mine!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Always learning here!&lt;/P&gt;&lt;P&gt;Thanks man&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 19:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045832#M920073</guid>
      <dc:creator>santiago_respane</dc:creator>
      <dc:date>2016-04-29T19:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045833#M920074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No a problem my friend &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2016 20:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045833#M920074</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-29T20:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045834#M920075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, sorry about the delay of my answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem that I found know, is that the table source are in a oracle DB, so when i make the select to consult the data I use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATOS:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;PROMOTION,&lt;/P&gt;&lt;P&gt;fecha alta,&lt;/P&gt;&lt;P&gt;fecha baja,&lt;/P&gt;&lt;P&gt;UR afectada,&lt;/P&gt;&lt;P&gt;# de unidades; &lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;SELECT * FROM DATOS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I try to do in this case?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 14:17:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045834#M920075</guid>
      <dc:creator>juagarti</dc:creator>
      <dc:date>2016-05-19T14:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045835#M920076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;DATOS:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;PROMOTION,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;fecha alta,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;fecha baja,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;UR afectada,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;# de unidades;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;SQL&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;SELECT * FROM DATOS;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Final&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DATOS&lt;/SPAN&gt;:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;LOAD 'Promotion' &amp;amp; AutoNumber([UR afectada]) as Promotion,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; [UR afectada] as detalle,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; [# de unidades] as unidades,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; AddMonths([Fecha alta], IterNo()-1) as FECHA_REPORT&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Resident &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DATOS&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;While AddMonths([Fecha alta], IterNo()-1) &amp;lt;= [Fecha baja];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;DROP Table &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DATOS&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 14:34:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045835#M920076</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-19T14:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create a different table that the table source with Qlikview script</title>
      <link>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045836#M920077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great!!! thank you!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 12:17:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-a-different-table-that-the-table-source-with-Qlikview/m-p/1045836#M920077</guid>
      <dc:creator>juagarti</dc:creator>
      <dc:date>2016-06-20T12:17:15Z</dc:date>
    </item>
  </channel>
</rss>

