<?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 Creating dynamic dates in URLs in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364544#M618797</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;Hello friends. I have some questions. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;1.- I have a URL where I just want the months and the year to change. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;2.- When the month reaches 12, I want them to change to the next year. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;Could anyone help me with this topic? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;I leave the script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;vMaxMes = 12;&lt;/P&gt;&lt;P&gt;vMinMes = 1;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;vMaxAño = 2017&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR vMes = 1 to $(vMaxMes) - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saidi:&lt;/P&gt;&lt;P&gt;LOAD @1 as [Mes],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @2 as [Año],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @3 as [Subdirección],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @4 as [División],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @5 as [Zona Distribución],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @6 as [Usuarios Totales (Promedio) (#)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @7 as [DEMUA TIUT Sin Eventos (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @8 as [DEMUA por Eventos TIUT (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @9 as [DEMUA TIUT con Eventos (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @10 as [TIUT Acumulado sin Eventos (Minutos promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @11 as [TIUT Acumulado con Eventos (Minutos promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @12 as [Meta TIUT (Minutos promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @13 as [DEMUA SAIDI Sin Eventos(Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @14 as [DEMUA por Eventos SAIDI (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @15 as [DEMUA SAIDI con Eventos (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @16 as [SAIDI Acumulado sin Eventos (Minutos Promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @17 as [SAIDI Acumulado con Eventos (Minutos Promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @18 as [Meta SAIDI (Minutos Promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @19 as [Usuarios Interrumpidos sin Eventos SAIFI (usuarios)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @20 as [Usuarios Interrumpidos por Eventos SAIFI (usuarios)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @21 as [Usuarios Interrumpidos con Eventos SAIFI (usuarios)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @22 as [SAIFI Acumulado sin Eventos (Interrupciones Promedio por Usuario)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @23 as [SAIFI Acumulado con Eventos (Interrupciones Promedio por Usuario)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @24 as [Meta SAIFI (Interrupciones Promedio por Usuario)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @25 as [Clave División],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @26 as [Clave Zona],&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(@27='Z','Zona',if(@27='D','División',if(@27='N','Nacional'))) as [Granularidad]&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.4.13.50:5380/OperacionUtil-war/extractorTablaroIE?ANIO=$(vMaxAño)&amp;amp;MES=$(vMes" rel="nofollow" target="_blank"&gt;http://10.4.13.50:5380/OperacionUtil-war/extractorTablaroIE?ANIO=$(vMaxAño)&amp;amp;MES=$(vMes&lt;/A&gt;&lt;SPAN&gt;)]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;(txt, utf8, no labels, delimiter is '|', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//STORE Saidi into &lt;C&gt;(qvd);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 May 2017 21:59:26 GMT</pubDate>
    <dc:creator>luis_gmb</dc:creator>
    <dc:date>2017-05-17T21:59:26Z</dc:date>
    <item>
      <title>Creating dynamic dates in URLs</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364544#M618797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;Hello friends. I have some questions. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;1.- I have a URL where I just want the months and the year to change. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;2.- When the month reaches 12, I want them to change to the next year. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;Could anyone help me with this topic? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;I leave the script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #212121; font-family: arial, sans-serif; font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;vMaxMes = 12;&lt;/P&gt;&lt;P&gt;vMinMes = 1;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;vMaxAño = 2017&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR vMes = 1 to $(vMaxMes) - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saidi:&lt;/P&gt;&lt;P&gt;LOAD @1 as [Mes],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @2 as [Año],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @3 as [Subdirección],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @4 as [División],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @5 as [Zona Distribución],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @6 as [Usuarios Totales (Promedio) (#)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @7 as [DEMUA TIUT Sin Eventos (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @8 as [DEMUA por Eventos TIUT (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @9 as [DEMUA TIUT con Eventos (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @10 as [TIUT Acumulado sin Eventos (Minutos promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @11 as [TIUT Acumulado con Eventos (Minutos promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @12 as [Meta TIUT (Minutos promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @13 as [DEMUA SAIDI Sin Eventos(Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @14 as [DEMUA por Eventos SAIDI (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @15 as [DEMUA SAIDI con Eventos (Minutos)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @16 as [SAIDI Acumulado sin Eventos (Minutos Promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @17 as [SAIDI Acumulado con Eventos (Minutos Promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @18 as [Meta SAIDI (Minutos Promedio)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @19 as [Usuarios Interrumpidos sin Eventos SAIFI (usuarios)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @20 as [Usuarios Interrumpidos por Eventos SAIFI (usuarios)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @21 as [Usuarios Interrumpidos con Eventos SAIFI (usuarios)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @22 as [SAIFI Acumulado sin Eventos (Interrupciones Promedio por Usuario)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @23 as [SAIFI Acumulado con Eventos (Interrupciones Promedio por Usuario)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @24 as [Meta SAIFI (Interrupciones Promedio por Usuario)],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @25 as [Clave División],&lt;/P&gt;&lt;P&gt;&amp;nbsp; @26 as [Clave Zona],&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(@27='Z','Zona',if(@27='D','División',if(@27='N','Nacional'))) as [Granularidad]&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://10.4.13.50:5380/OperacionUtil-war/extractorTablaroIE?ANIO=$(vMaxAño)&amp;amp;MES=$(vMes" rel="nofollow" target="_blank"&gt;http://10.4.13.50:5380/OperacionUtil-war/extractorTablaroIE?ANIO=$(vMaxAño)&amp;amp;MES=$(vMes&lt;/A&gt;&lt;SPAN&gt;)]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;(txt, utf8, no labels, delimiter is '|', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//STORE Saidi into &lt;C&gt;(qvd);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2017 21:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364544#M618797</guid>
      <dc:creator>luis_gmb</dc:creator>
      <dc:date>2017-05-17T21:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Creating dynamic dates in URLs</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364545#M618798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could be possible this case, Would you able to share more in detail please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 01:45:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364545#M618798</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-18T01:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Creating dynamic dates in URLs</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364546#M618799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Luis!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this:&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;vMaxMes = 13;&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;vMinMes = 1;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;vMaxAño = 2017&lt;/SPAN&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;FOR vMes = 1 to $(vMaxMes)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;let &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;vMaxAño&lt;/SPAN&gt;=if($(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMes&lt;/SPAN&gt;)=13,$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;vMaxAño&lt;/SPAN&gt;)+1,$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;vMaxAño))&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;let &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMes&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=if($(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMes&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)=13,&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;1,$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMes&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;)) //there you must to prevent loading dates somehow because it will be loading your dates until crash.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;// for instance you can use this condition within the loop before load statement: Exit For When &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMes&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)=2 and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;$(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333px;"&gt;vMaxAño&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)=2018.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 May 2017 04:24:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364546#M618799</guid>
      <dc:creator>Sergey_Shuklin</dc:creator>
      <dc:date>2017-05-18T04:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating dynamic dates in URLs</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364547#M618800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Anil the objective of this process is that by means of two variables year and month you can do an accountant from 1 to 12 that is the 12 months that has a year and when it reaches the last month change the year and start again always and When there is a link on the server.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;With this you would automate the extraction of several data with a single link, without having to change the month and year manually.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 May 2017 02:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364547#M618800</guid>
      <dc:creator>luis_gmb</dc:creator>
      <dc:date>2017-05-19T02:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Creating dynamic dates in URLs</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364548#M618801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;Hello, Sergey.&lt;BR /&gt;&lt;BR /&gt;Tomorrow I try this solution and tell you that it works.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 May 2017 02:14:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-dynamic-dates-in-URLs/m-p/1364548#M618801</guid>
      <dc:creator>luis_gmb</dc:creator>
      <dc:date>2017-05-19T02:14:56Z</dc:date>
    </item>
  </channel>
</rss>

