<?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: transpose the table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124174#M91485</link>
    <description>&lt;P&gt;Hi, for the second parameter of subfield you can use Chr() and set the code for RS and GS, maybe you need to do it in some steps: first to split each pair, and a second one to split each pair value.&lt;/P&gt;</description>
    <pubDate>Mon, 02 Oct 2023 06:49:21 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2023-10-02T06:49:21Z</dc:date>
    <item>
      <title>transpose the table</title>
      <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2123869#M91465</link>
      <description>&lt;P&gt;I want transpose the table's column into separate entries?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for ex.&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="20%" height="25px"&gt;Perm ID&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;Code&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;Count&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;Code&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;Count&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="20%" height="25px"&gt;abc&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;kyubis1&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;24&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;kyubis2&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;33&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="20%" height="25px"&gt;def&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;kyubij1&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;19&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;krsfgd2&lt;/TD&gt;
&lt;TD width="20%" height="25px"&gt;46&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can i convert this to :&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="1" width="68.17293928176882%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;Perm ID&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;Code&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="25px"&gt;Count&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;abc&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;kyubis1&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="25px"&gt;24&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="40px"&gt;abc&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="40px"&gt;kyubis2&lt;/TD&gt;
&lt;TD width="16.666666666666668%" height="40px"&gt;
&lt;P&gt;33&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="40px"&gt;def&lt;/TD&gt;
&lt;TD height="40px"&gt;kyubij1&lt;/TD&gt;
&lt;TD height="40px"&gt;
&lt;P&gt;19&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;def&lt;/TD&gt;
&lt;TD&gt;krsfgd2&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;46&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;just to have separate and distinct data instead of horizontal repeatation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2023 10:55:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2123869#M91465</guid>
      <dc:creator>rushi1093</dc:creator>
      <dc:date>2023-09-29T10:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: transpose the table</title>
      <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124058#M91476</link>
      <description>&lt;P&gt;Hi, the first table has some columns with the same name, I don't know how you can refer to the second 'Code' column. I think your real data might be different and it will be better to have an example of that real structure example.&lt;/P&gt;
&lt;P&gt;If it helps: to split a row with separators in different rows you can use subfield() fucntion with only the 2 first parameters. (2nd example &lt;A href="https://help.qlik.com/en-US/sense/August2023/Subsystems/Hub/Content/Sense_Hub/Scripting/StringFunctions/SubField.htm" target="_self"&gt;here&lt;/A&gt;)&lt;/P&gt;
&lt;P&gt;There is also the option to load using &lt;A href="https://help.qlik.com/en-US/sense/May2022/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptPrefixes/crosstable.htm" target="_self"&gt;crosstable&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Sep 2023 06:59:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124058#M91476</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2023-09-30T06:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: transpose the table</title>
      <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124131#M91482</link>
      <description>Yes I agree columns are different. Actually its coming from text file which has RS and GS to separate the code and count..basically the table is getting populated horizontally but I require the data vertically as shown in the solution table. So that every occurance of code and count will be appended and not extend the columns but rows..kindly check if this helps else i will try to share the text file of data. &lt;BR /&gt;</description>
      <pubDate>Sun, 01 Oct 2023 18:45:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124131#M91482</guid>
      <dc:creator>rushi1093</dc:creator>
      <dc:date>2023-10-01T18:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: transpose the table</title>
      <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124174#M91485</link>
      <description>&lt;P&gt;Hi, for the second parameter of subfield you can use Chr() and set the code for RS and GS, maybe you need to do it in some steps: first to split each pair, and a second one to split each pair value.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 06:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124174#M91485</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2023-10-02T06:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: transpose the table</title>
      <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124599#M91514</link>
      <description>&lt;P&gt;Pfa for the actual text file. &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22593"&gt;@rubenmarin&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/196765"&gt;@jonashertz&lt;/a&gt;&amp;nbsp;…in this as you see, RS and GS prefix data gets populated horizontally..I required only count and code column for all such entries.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 08:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124599#M91514</guid>
      <dc:creator>rushi1093</dc:creator>
      <dc:date>2023-10-03T08:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: transpose the table</title>
      <link>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124600#M91515</link>
      <description>&lt;P&gt;Hi, it will be better if you attach some sample data in a format that we can test to load in Qlik.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 08:19:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/transpose-the-table/m-p/2124600#M91515</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2023-10-03T08:19:44Z</dc:date>
    </item>
  </channel>
</rss>

