<?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: Split Rows in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865993#M1017194</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sateesh,&lt;/P&gt;&lt;P&gt;According to your requirement ,how do you want to name every 30 records which isn't meaningless acutually,&lt;/P&gt;&lt;P&gt;Else you can create like Range in the Dimension and use your measure.&lt;/P&gt;&lt;P&gt;Can you post your sample data ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Apr 2015 13:29:24 GMT</pubDate>
    <dc:creator>sibideepak</dc:creator>
    <dc:date>2015-04-07T13:29:24Z</dc:date>
    <item>
      <title>Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865988#M1017189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Actually my requirement is we calculating %lean value by using line chart.We have 3000 records in our measure Column. Instead of Showing 3000 record in&amp;nbsp; x-axis.We are Merge 30 records one Data Point and Next 30 records one Data point etc....&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please see the Attached Screen Show X-axis have numerical values each numerical value contains 30 records&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 12:25:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865988#M1017189</guid>
      <dc:creator>sat_tok52</dc:creator>
      <dc:date>2015-04-07T12:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865989#M1017190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sateesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not really sure of your required output, can you knock up an example and post, would be easier to help then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 12:27:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865989#M1017190</guid>
      <dc:creator />
      <dc:date>2015-04-07T12:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865990#M1017191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is your data .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;PRODUCT, YEAR, SALES&lt;/P&gt;&lt;P&gt;1, 2013, 12&lt;/P&gt;&lt;P&gt;2, 2013,&amp;nbsp; 300&lt;/P&gt;&lt;P&gt;3, 2013,&amp;nbsp; 400&lt;/P&gt;&lt;P&gt;4, 2013,&amp;nbsp; 500&lt;/P&gt;&lt;P&gt;5, 2013,&amp;nbsp; 600&lt;/P&gt;&lt;P&gt;6, 2013,&amp;nbsp; 600&lt;/P&gt;&lt;P&gt;7, 2014,&amp;nbsp; 500&lt;/P&gt;&lt;P&gt;8, 2014,&amp;nbsp; 400&lt;/P&gt;&lt;P&gt;9, 2014,&amp;nbsp; 300&lt;/P&gt;&lt;P&gt;4, 2014,&amp;nbsp; 200&lt;/P&gt;&lt;P&gt;5, 2014,&amp;nbsp; 100&lt;/P&gt;&lt;P&gt;9, 2014,&amp;nbsp; 900&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use some kind of syntax like this to create the N records that you require. You can obviously change the first statement to include the RecNo() statement also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load PRODUCT as PROD,&lt;/P&gt;&lt;P&gt;&amp;nbsp; YEAR as YR,&lt;/P&gt;&lt;P&gt;&amp;nbsp; SALES as SLS&lt;/P&gt;&lt;P&gt;Resident data&lt;/P&gt;&lt;P&gt;where RecNo() &amp;lt; 5&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 12:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865990#M1017191</guid>
      <dc:creator>Roop</dc:creator>
      <dc:date>2015-04-07T12:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865991#M1017192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thanks All,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Actually my requirement is we calculating %lean value by using line chart.We have 3000 records in our measure Column. Instead of Showing 3000 record in&amp;nbsp; x-axis.We are Merge 30 records one Data Point and Next 30 records one Data point etc....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865991#M1017192</guid>
      <dc:creator>sat_tok52</dc:creator>
      <dc:date>2015-04-07T13:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865992#M1017193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Actually my requirement is we calculating %lean value by using line chart.We have 3000 records in our measure Column. Instead of Showing 3000 record in&amp;nbsp; x-axis.We are Merge 30 records one Data Point and Next 30 records one Data point etc....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:25:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865992#M1017193</guid>
      <dc:creator>sat_tok52</dc:creator>
      <dc:date>2015-04-07T13:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865993#M1017194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sateesh,&lt;/P&gt;&lt;P&gt;According to your requirement ,how do you want to name every 30 records which isn't meaningless acutually,&lt;/P&gt;&lt;P&gt;Else you can create like Range in the Dimension and use your measure.&lt;/P&gt;&lt;P&gt;Can you post your sample data ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:29:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865993#M1017194</guid>
      <dc:creator>sibideepak</dc:creator>
      <dc:date>2015-04-07T13:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865994#M1017195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably use IntervalMatch in some form .... Keep the record number when you load the data and generate a small table that will create an intervalmatch input of 1 to 30, 31 to 60 etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:33:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865994#M1017195</guid>
      <dc:creator>Roop</dc:creator>
      <dc:date>2015-04-07T13:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Split Rows</title>
      <link>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865995#M1017196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the Class function in a Calculate Dimension like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;=Class&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;RowId_Num&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;,5) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;where &lt;SPAN style="color: #800000; font-size: 10pt;"&gt;RowId_Num matches RowNo() of records.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;You can create your RowId_Num during data load.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 13:44:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Split-Rows/m-p/865995#M1017196</guid>
      <dc:creator />
      <dc:date>2015-04-07T13:44:16Z</dc:date>
    </item>
  </channel>
</rss>

