<?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: Error working with variables in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1969155#M79952</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48860"&gt;@Digvijay_Singh&lt;/a&gt;&amp;nbsp; &amp;nbsp;for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Aug 2022 12:55:08 GMT</pubDate>
    <dc:creator>MaryanVegaC</dc:creator>
    <dc:date>2022-08-16T12:55:08Z</dc:date>
    <item>
      <title>Error working with variables</title>
      <link>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968841#M79917</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I have an input variable (V1) where the default value is 2022-05. And I wanna create a subsequent variable to create a range of months from V1. Here it is what I`m trying to do:&lt;/P&gt;
&lt;P&gt;Addmonths($(v1),-11)&lt;/P&gt;
&lt;P&gt;the expected value should be 2021-06, eleven months earlier, but instead I`m getting 1904-08. Somebody can help me, I don`t understand why Qlik is changing the value. something important is that in the data load editor the date format is&amp;nbsp;SET DateFormat='YYYY-MM';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 19:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968841#M79917</guid>
      <dc:creator>MaryanVegaC</dc:creator>
      <dc:date>2022-08-15T19:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error working with variables</title>
      <link>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968872#M79920</link>
      <description>&lt;P&gt;Looks like $(V1) is not interpreted as date, this works -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Addmonths(Date('$(V1)','YYYY-MM'),-11)&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 21:02:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968872#M79920</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2022-08-15T21:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error working with variables</title>
      <link>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968892#M79924</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48860"&gt;@Digvijay_Singh&lt;/a&gt;&amp;nbsp;I think you mean Date&lt;STRONG&gt;#&lt;/STRONG&gt; ?&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 23:51:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968892#M79924</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2022-08-15T23:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error working with variables</title>
      <link>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968912#M79928</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My bad, actually interpretation is not needed as the format is 'YYYY-MM' is updated in the script as mentioned by &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/187613"&gt;@MaryanVegaC&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;Addmonths('$(V1)',-11) - This also works, so Date/Date# are not needed&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 02:23:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1968912#M79928</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2022-08-16T02:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: Error working with variables</title>
      <link>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1969155#M79952</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6148"&gt;@rwunderlich&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/48860"&gt;@Digvijay_Singh&lt;/a&gt;&amp;nbsp; &amp;nbsp;for your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 12:55:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-working-with-variables/m-p/1969155#M79952</guid>
      <dc:creator>MaryanVegaC</dc:creator>
      <dc:date>2022-08-16T12:55:08Z</dc:date>
    </item>
  </channel>
</rss>

