<?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: Advise - scripting in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127992#M633204</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AFAIK, GROUP BY can indeed group by expression, I am using this like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;GROUP BY MonthName(DATEFIELD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so using a combined key that doesn't exist in the input table should also work (which should be the same than grouping on the fields separately).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 05 Jun 2016 12:02:43 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2016-06-05T12:02:43Z</dc:date>
    <item>
      <title>Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127986#M633198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would like some advise and would like to know if I my below script is written efficient.Do I need to reload the tables as much as I do to create the new variables?&lt;/P&gt;&lt;P&gt;Thanks. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp_Demand_2:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;BQS_ind,&lt;/P&gt;&lt;P&gt;BQS_oms,&lt;/P&gt;&lt;P&gt;Weekday_Flag,&lt;/P&gt;&lt;P&gt;Demand_Datum,&lt;/P&gt;&lt;P&gt;Demand_Datum_Month,&lt;/P&gt;&lt;P&gt;BQS_Dat_ID,&lt;/P&gt;&lt;P&gt;If(isnull(Demand_Aantal)=-1,0,Demand_Aantal) as Demand_Aantal,&lt;/P&gt;&lt;P&gt;Datum,&lt;/P&gt;&lt;P&gt;Flag_uit,&lt;/P&gt;&lt;P&gt;Leverancier_Naam,&lt;/P&gt;&lt;P&gt;Lopend_Crediteurnr,&lt;/P&gt;&lt;P&gt;Lopend_Crediteuroms,&lt;/P&gt;&lt;P&gt;Lopend_Invoerdat,&lt;/P&gt;&lt;P&gt;Lopend_Afldat,&lt;/P&gt;&lt;P&gt;Lopend_Orderbak,&lt;/P&gt;&lt;P&gt;Lopend_Order_interval,&lt;/P&gt;&lt;P&gt;Lopend_Overdue,&lt;/P&gt;&lt;P&gt;Lopend_confirmatie,&lt;/P&gt;&lt;P&gt;Lopend_Open,&lt;/P&gt;&lt;P&gt;Lopend_Order,&lt;/P&gt;&lt;P&gt;If(isnull(Lopend_Aantal_B)=-1,0,Lopend_Aantal_B) as Lopend_Aantal_B,&lt;/P&gt;&lt;P&gt;If(isnull(Lopend_Aantal_O)=-1,0,Lopend_Aantal_O) as Lopend_Aantal_O,&lt;/P&gt;&lt;P&gt;If(isnull(Lopend_Aantal_T)=-1,0,Lopend_Aantal_T) as Lopend_Aantal_T,&lt;/P&gt;&lt;P&gt;Artnr,&lt;/P&gt;&lt;P&gt;Lopend_Artnr,&lt;/P&gt;&lt;P&gt;Lopend_Artoms,&lt;/P&gt;&lt;P&gt;Joris,&lt;/P&gt;&lt;P&gt;1 as Flag,&lt;/P&gt;&lt;P&gt;If(isnull(Voorraad)=-1,0,Voorraad) as Voorraad,&lt;/P&gt;&lt;P&gt;//---------------------------------------Projectie Fact-------------------------------------------------------&lt;/P&gt;&lt;P&gt;If(isnull(Demand_Aantal)=-1,0,Demand_Aantal)*-1+&lt;/P&gt;&lt;P&gt;If(isnull(Lopend_Aantal_B)=-1,0,Lopend_Aantal_B) +&lt;/P&gt;&lt;P&gt;If(isnull(Voorraad)=-1,0,Voorraad) as Projectie_step&lt;/P&gt;&lt;P&gt;resident Temp_Demand&lt;/P&gt;&lt;P&gt;where Flag_uit=0 and isnum(BQS_ind)&lt;/P&gt;&lt;P&gt;Order by BQS_ind asc, Datum asc, Demand_Aantal desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//-------------------------Nu maken we een rangesum van Projectie_Step-----------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp_Projectie_1:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;BQS_ind&amp;amp;Datum as %BQS_Datum_Key,&lt;/P&gt;&lt;P&gt;ApplyMap('Voorraadprijs_max',BQS_ind,0)as Voorraadprijs_max,&lt;/P&gt;&lt;P&gt;ApplyMap('Voorraadprijs_min',BQS_ind,0)as Voorraadprijs_min,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;if(BQS_ind=Peek(BQS_ind),RangeSum(Projectie_step,Peek(Projectie2)),RangeSum(Projectie_step)) as Projectie2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Resident Temp_Demand_2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//-------------------------Omdat er meerdere lijnen op 1 dag kunnen zijn moeten we de max bepalen---------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Projectie:&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;BQS_ind&amp;amp;Datum as %BQS_Datum_Key,&lt;/P&gt;&lt;P&gt;Max(Projectie2) as Projectie&lt;/P&gt;&lt;P&gt;resident Temp_Projectie_1&lt;/P&gt;&lt;P&gt;Group by BQS_ind&amp;amp;Datum ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// ------------------------- Met Peek plaatsen we de max waarde op de eerste lijn en een 0 op de andere-------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Demand:&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;if(if(%BQS_Datum_Key=Peek(%BQS_Datum_Key),0,ApplyMap('Projectie',%BQS_Datum_Key,0))&amp;lt;0,0,if(%BQS_Datum_Key=Peek(%BQS_Datum_Key),0,ApplyMap('Projectie',%BQS_Datum_Key,0)))as Projectie &lt;/P&gt;&lt;P&gt;resident Temp_Projectie_1;&lt;/P&gt;&lt;P&gt;//------------------------- nu hebben we de juiste dagprojecties op de weekdagen --------------------------------------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table Temp_DagVoorraad, Temp_Demand, Temp_Demand_2, Temp_Projectie_1;&lt;/P&gt;&lt;P&gt;Store Demand into $(vStorePath)\Datamodel_Projection.CSV (txt);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Jun 2016 21:21:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127986#M633198</guid>
      <dc:creator>joris_lansdaal</dc:creator>
      <dc:date>2016-06-04T21:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127987#M633199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain what the script should do/find? The way you formatted your load script doesn't exactly make it look like a User Manual...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 10:01:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127987#M633199</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-06-05T10:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127988#M633200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good point about the formatting. Are there any guidelines on how to improve script readability; next to the format?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 10:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127988#M633200</guid>
      <dc:creator>joris_lansdaal</dc:creator>
      <dc:date>2016-06-05T10:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127989#M633201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The script your looking at needs to generate one measure named Projectie. There can be multiple lines per BQS_ind - Date combination. I need one value per BQS_Ind -Date combination for Projectie.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) First I created Temp_Demand2 where I loaded/concatenated 3 different sources. Inventory, Orders and future Demand. Three measures combined gives me the first step for projection measure.&lt;/P&gt;&lt;P&gt;2) &lt;SPAN style="font-size: 13.3333px;"&gt; Via a correct sorting and rangesum I can extract a Max value and apply &lt;/SPAN&gt;mapping.&lt;/P&gt;&lt;P&gt;3) &lt;SPAN style="font-size: 13.3333px;"&gt;in order to apply one value and zero's on the other lines I created the for the&lt;/SPAN&gt; Demand table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works, but is ask myself if I need to create all the different tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 10:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127989#M633201</guid>
      <dc:creator>joris_lansdaal</dc:creator>
      <dc:date>2016-06-05T10:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127990#M633202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to use a preceding load instead of resident loads, e.g. when looking at your first two table load statements.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2972"&gt;Preceding Load&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that there recently were discussions about the performance costs of a preceding load being to high, so test with your data to ensure the costs are not too high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also be able to replace the aggregating mapping tables and additional resident loads with the ApplyMap() functions with loading your fact table two times, once sorted asc, once des, to create the entries for the first and last line of your grouping entities.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 11:14:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127990#M633202</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-05T11:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127991#M633203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The table you can drop for sure is the mapping table. If you don't have billions of rows, replace it with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LEFT JOIN (&lt;SPAN style="color: #3d3d3d; font-size: 13px;"&gt;Temp_Projectie_1)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD BQS_ind, Datum, &lt;SPAN style="color: #3d3d3d; font-size: 13px;"&gt;Max(Projectie2) as NieuweProjectie&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;RESIDENT Temp_Projectie_1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'courier new', courier;"&gt;GROUP BY BQS_in, Datum;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in your next step, you use the new field instead of the original one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also (but this doesn't elimnate any tables, it's just shorter in writing) all the IF() tests for null values can be replaced by the Alt() function which does the same. For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'courier new', courier; font-size: 13px;"&gt;If(isnull(Demand_Aantal)=-1,0,Demand_Aantal) as Demand_Aantal,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;becomes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Alt(Demand_Aantal, 0) AS &lt;SPAN style="font-size: 13.3333px;"&gt;Demand_Aantal,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW IMHO GROUP BY can only group on field names, not on expressions (which 'BQS_in &amp;amp; Datum' is) Don't you get any errors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 11:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127991#M633203</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-06-05T11:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127992#M633204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AFAIK, GROUP BY can indeed group by expression, I am using this like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;GROUP BY MonthName(DATEFIELD);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so using a combined key that doesn't exist in the input table should also work (which should be the same than grouping on the fields separately).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 12:02:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127992#M633204</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-05T12:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127993#M633205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Stefan. I should search for an experiment I did a few years back, when the use of ad-hoc fields always made the GROUP BY fail. I gave up since then. Remember discussing the state of QlikView documentation? This is what it says in the help article on the LOAD statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the top: "&lt;SPAN class="Italic"&gt;&lt;EM&gt;[&lt;/EM&gt; &lt;/SPAN&gt;&lt;A class="Bold" href="https://community.qlik.com/"&gt;&lt;STRONG style="color: #99cc00;"&gt;group_by&lt;/STRONG&gt;&lt;/A&gt;&lt;SPAN class="Italic"&gt; &lt;EM&gt;groupbyfieldlist ]"&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the discussion for group by: "&lt;SPAN class="Italic"&gt;&lt;EM&gt;groupbyfieldlist ::= (fieldname { ,fieldname } )"&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;and back to the top: "&lt;SPAN class="Italic"&gt;&lt;EM&gt;fieldname&lt;/EM&gt;&lt;/SPAN&gt; is a text that is identical to a field name in the table. "&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The on-line help isn't any different. I know that my restricted field-of-vision is caused in part by Qlik information &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; It's still a pity that they don't do anything about it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 12:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127993#M633205</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2016-06-05T12:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127994#M633206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter and Stefan,&lt;/P&gt;&lt;P&gt;I really appreciate both your help, thanks!&lt;/P&gt;&lt;P&gt;Joris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 12:26:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127994#M633206</guid>
      <dc:creator>joris_lansdaal</dc:creator>
      <dc:date>2016-06-05T12:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Advise - scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127995#M633207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;The on-line help isn't any different. I know that my restricted field-of-vision is caused in part by Qlik information &lt;SPAN class="emoticon-inline emoticon_happy" style="height: 16px; width: 16px;"&gt;&lt;/SPAN&gt; It's still a pity that they don't do anything about it...&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Peter&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yeah, I remember that discussion pretty well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I fully agree that the help pages should be reviewed more often.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It would really be good if we somehow can post comments / issues to the help page technical writers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Jun 2016 21:36:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Advise-scripting/m-p/1127995#M633207</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-06-05T21:36:34Z</dc:date>
    </item>
  </channel>
</rss>

