<?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: autogenerate prices in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/autogenerate-prices/m-p/115450#M8008</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Hi All, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I'm sure there is a very easy answer to this, but something I cant find. Currently trying to generate two min and max price fields with values between 0 and 1m with a step of 10p, for example 0,10p, 20p, 30p and so on. Does anyone have any examples of how best to achieve. Current script returns 0, 0.1, 0.2, 0.3 and can't seem to format correctly. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; --------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Min_Price:&lt;BR /&gt;LOAD &lt;BR /&gt; RecNo()-0.10 AS "Min Price 1",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.20 AS "Min Price 2",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.30 AS "Min Price 3",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.40 AS "Min Price 4",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.50 AS "Min Price 5",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.60 AS "Min Price 6",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.70 AS "Min Price 7",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.80 AS "Min Price 8",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.90 AS "Min Price 9",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-1&amp;nbsp;&amp;nbsp; AS "Min Price 10",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0&amp;nbsp;&amp;nbsp; AS "Min Price 0"&lt;BR /&gt;AutoGenerate(1000000);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Min_Price_Final:&lt;BR /&gt;LOAD &lt;BR /&gt; "Min Price 1" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 2" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 3" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 4" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 5" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 6" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 7" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 8" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 9" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 10" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 0" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Drop Table Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Min_Price: &lt;BR /&gt;&amp;nbsp;&amp;nbsp; NoConcatenate load Distinct &lt;BR /&gt;&amp;nbsp;&amp;nbsp; ROUND("Min Price",'0.10') as "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price_Final;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Drop Tables Min_Price_Final;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Max_Price:&lt;BR /&gt;&amp;nbsp; load "Min Price" as "Max Price"&lt;BR /&gt;&amp;nbsp; resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Sep 2018 13:44:02 GMT</pubDate>
    <dc:creator>cmorri1988</dc:creator>
    <dc:date>2018-09-27T13:44:02Z</dc:date>
    <item>
      <title>autogenerate prices</title>
      <link>https://community.qlik.com/t5/App-Development/autogenerate-prices/m-p/115449#M8007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, I'm sure there is a very easy answer to this, but something I cant find. Currently trying to generate two min and max price fields with values between 0 and 1m with a step of 10p, for example 0,10p, 20p, 30p and so on. Does anyone have any examples of how best to achieve. Current script returns 0, 0.1, 0.2, 0.3 and can't seem to format correctly. Thanks -------- current script: Min_Price: LOAD&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.10 AS "Min Price 1",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.20 AS "Min Price 2",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.30 AS "Min Price 3",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.40 AS "Min Price 4",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.50 AS "Min Price 5",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.60 AS "Min Price 6",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.70 AS "Min Price 7",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.80 AS "Min Price 8",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.90 AS "Min Price 9",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-1&amp;nbsp; AS "Min Price 10",&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0&amp;nbsp; AS "Min Price 0" AutoGenerate(1000000); Min_Price_Final: LOAD "Min Price 1" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 2" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 3" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 4" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 5" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 6" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 7" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 8" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 9" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 10" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final) LOAD "Min Price 0" AS "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Drop Table Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Min_Price:&amp;nbsp;&amp;nbsp; NoConcatenate load Distinct&amp;nbsp;&amp;nbsp; ROUND("Min Price",'0.10') as "Min Price"&amp;nbsp;&amp;nbsp; Resident Min_Price_Final;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Drop Tables Min_Price_Final;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max_Price:&amp;nbsp;&amp;nbsp; load "Min Price" as "Max Price"&amp;nbsp;&amp;nbsp; resident Min_Price;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2018 13:43:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/autogenerate-prices/m-p/115449#M8007</guid>
      <dc:creator>cmorri1988</dc:creator>
      <dc:date>2018-09-27T13:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: autogenerate prices</title>
      <link>https://community.qlik.com/t5/App-Development/autogenerate-prices/m-p/115450#M8008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Hi All, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;I'm sure there is a very easy answer to this, but something I cant find. Currently trying to generate two min and max price fields with values between 0 and 1m with a step of 10p, for example 0,10p, 20p, 30p and so on. Does anyone have any examples of how best to achieve. Current script returns 0, 0.1, 0.2, 0.3 and can't seem to format correctly. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #3d3d3d; font-family: 'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; --------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Min_Price:&lt;BR /&gt;LOAD &lt;BR /&gt; RecNo()-0.10 AS "Min Price 1",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.20 AS "Min Price 2",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.30 AS "Min Price 3",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.40 AS "Min Price 4",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.50 AS "Min Price 5",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.60 AS "Min Price 6",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.70 AS "Min Price 7",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.80 AS "Min Price 8",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0.90 AS "Min Price 9",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-1&amp;nbsp;&amp;nbsp; AS "Min Price 10",&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RecNo()-0&amp;nbsp;&amp;nbsp; AS "Min Price 0"&lt;BR /&gt;AutoGenerate(1000000);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Min_Price_Final:&lt;BR /&gt;LOAD &lt;BR /&gt; "Min Price 1" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 2" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 3" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 4" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 5" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 6" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 7" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 8" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 9" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 10" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(Min_Price_Final)&lt;BR /&gt;LOAD&lt;BR /&gt; "Min Price 0" AS "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Drop Table Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Min_Price: &lt;BR /&gt;&amp;nbsp;&amp;nbsp; NoConcatenate load Distinct &lt;BR /&gt;&amp;nbsp;&amp;nbsp; ROUND("Min Price",'0.10') as "Min Price"&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Resident Min_Price_Final;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; Drop Tables Min_Price_Final;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp; Max_Price:&lt;BR /&gt;&amp;nbsp; load "Min Price" as "Max Price"&lt;BR /&gt;&amp;nbsp; resident Min_Price;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2018 13:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/autogenerate-prices/m-p/115450#M8008</guid>
      <dc:creator>cmorri1988</dc:creator>
      <dc:date>2018-09-27T13:44:02Z</dc:date>
    </item>
  </channel>
</rss>

