<?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 and fill in missing information in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144787#M93151</link>
    <description>&lt;P&gt;Thanks for your answer, I get this error with the first part of the script&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="headline edc_error"&gt;Se ha producido el siguiente error:&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;Unexpected token: ')', expected one of: ',', 'OPERATOR_PLUS', 'OPERATOR_MINUS', 'OPERATOR_MULTIPLICATION', 'OPERATOR_DIVISION', 'OPERATOR_STRING_CONCAT', 'like', ...&lt;/DIV&gt;
&lt;DIV class="empty edc_error"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="headline edc_error"&gt;El error se ha producido aquí:&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;TempCalendar: LOAD Date(, 'YYYY-MM'&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;)&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; AS YearMonth AUTOGENERATE (1) WHILE Date(, 'YYYY-MM') &amp;gt;= '2020-01'&lt;/DIV&gt;</description>
    <pubDate>Wed, 06 Dec 2023 12:29:42 GMT</pubDate>
    <dc:creator>AlejandroJuarez</dc:creator>
    <dc:date>2023-12-06T12:29:42Z</dc:date>
    <item>
      <title>create and fill in missing information</title>
      <link>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144552#M93122</link>
      <description>&lt;P&gt;Hello, I have a complex problem that surpasses me.&lt;/P&gt;
&lt;P&gt;attached qvd&lt;/P&gt;
&lt;P&gt;- as step 1 I need to create the missing monthmane&lt;/P&gt;
&lt;P&gt;- step 2, load all the original and created monthnames with a unique nomenclator, eg:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;month_year/nomenclator/index/monthly_increment&lt;/P&gt;
&lt;P&gt;Jan2020 /1/100/0&lt;/P&gt;
&lt;P&gt;January2020/3/100/0&lt;/P&gt;
&lt;P&gt;February2020/2/index(previous)*(monthly_increment)/5&lt;/P&gt;
&lt;P&gt;March2021/3/(index(previous)*(monthly_increment)/10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* I need to complete the monthmane from Jan 2020 to the current date&lt;/P&gt;
&lt;P&gt;** I need to copy all of the above in all months that do not have new records&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help but this problem is overcoming me.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Dec 2023 21:01:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144552#M93122</guid>
      <dc:creator>AlejandroJuarez</dc:creator>
      <dc:date>2023-12-05T21:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: create and fill in missing information</title>
      <link>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144597#M93131</link>
      <description>&lt;P&gt;// Step 1: Create Missing Month Names&lt;BR /&gt;TempCalendar:&lt;BR /&gt;LOAD&lt;BR /&gt;Date($(date), 'YYYY-MM') AS YearMonth&lt;BR /&gt;AUTOGENERATE (1)&lt;BR /&gt;WHILE Date($(date), 'YYYY-MM') &amp;gt;= '2020-01';&lt;/P&gt;
&lt;P&gt;// Step 2: Load Original and Created Month Names with Unique Nomenclator&lt;BR /&gt;FinalTable:&lt;BR /&gt;LOAD&lt;BR /&gt;YearMonth,&lt;BR /&gt;AutoNumberHash128(YearMonth &amp;amp; Nomenclator &amp;amp; Index &amp;amp; MonthlyIncrement) AS UniqueID&lt;BR /&gt;RESIDENT YourOriginalTable;&lt;/P&gt;
&lt;P&gt;CONCATENATE (FinalTable)&lt;BR /&gt;LOAD&lt;BR /&gt;YearMonth,&lt;BR /&gt;AutoNumberHash128(YearMonth &amp;amp; Nomenclator &amp;amp; Index &amp;amp; MonthlyIncrement) AS UniqueID&lt;BR /&gt;RESIDENT TempCalendar;&lt;/P&gt;
&lt;P&gt;DROP TABLE TempCalendar; // Drop the temporary table once done&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 03:23:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144597#M93131</guid>
      <dc:creator>Aasir</dc:creator>
      <dc:date>2023-12-06T03:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: create and fill in missing information</title>
      <link>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144787#M93151</link>
      <description>&lt;P&gt;Thanks for your answer, I get this error with the first part of the script&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="headline edc_error"&gt;Se ha producido el siguiente error:&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;Unexpected token: ')', expected one of: ',', 'OPERATOR_PLUS', 'OPERATOR_MINUS', 'OPERATOR_MULTIPLICATION', 'OPERATOR_DIVISION', 'OPERATOR_STRING_CONCAT', 'like', ...&lt;/DIV&gt;
&lt;DIV class="empty edc_error"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="headline edc_error"&gt;El error se ha producido aquí:&lt;/DIV&gt;
&lt;DIV class="edc_error"&gt;TempCalendar: LOAD Date(, 'YYYY-MM'&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;)&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt; AS YearMonth AUTOGENERATE (1) WHILE Date(, 'YYYY-MM') &amp;gt;= '2020-01'&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Dec 2023 12:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/create-and-fill-in-missing-information/m-p/2144787#M93151</guid>
      <dc:creator>AlejandroJuarez</dc:creator>
      <dc:date>2023-12-06T12:29:42Z</dc:date>
    </item>
  </channel>
</rss>

