<?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: Rotate an imported table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101884#M6818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're welcome - glad to be of help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2018 16:39:25 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2018-07-19T16:39:25Z</dc:date>
    <item>
      <title>Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101878#M6812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I import an Excel-table with Data Manager. The table has 3 columns (KeyField, Column2, Column3) and 250 rows.&lt;/P&gt;&lt;P&gt;I want the &lt;SPAN style="font-size: 13.3333px;"&gt;Data Manager &lt;/SPAN&gt;to rotate the table to the right so I get 250 columns and 3 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Qlik View it's done with script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * FROM $(rootpath)$(xlsxpath)$(apppath)FileName.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is TableName, filters(&lt;/P&gt;&lt;P&gt;Rotate(right)&lt;/P&gt;&lt;P&gt;))&lt;/P&gt;&lt;P&gt;WHERE not (Exists (KeyField));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But how can I do this in Qlik Sense?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R.W.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2018 14:09:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101878#M6812</guid>
      <dc:creator>rudywelvaert</dc:creator>
      <dc:date>2018-07-18T14:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101879#M6813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should also work in Qlik Sense&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 06:19:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101879#M6813</guid>
      <dc:creator>Lisa_P</dc:creator>
      <dc:date>2018-07-19T06:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101880#M6814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Lisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the autogenerated secion I have this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set dataManagerTables = '','&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TableName&lt;/SPAN&gt;';&lt;/P&gt;&lt;P&gt;//This block renames script tables from non generated section which conflict with the names of managed tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each name in $(dataManagerTables)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let index = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let currentName = name;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let tableNumber = TableNumber(name);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Let matches = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Do while not IsNull(tableNumber) or (index &amp;gt; 0 and matches &amp;gt; 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; index = index + 1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; currentName = name &amp;amp; '-' &amp;amp; index;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tableNumber = TableNumber(currentName)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; matches = Match('$(currentName)', $(dataManagerTables));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Loop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If index &amp;gt; 0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rename Table '$(name)' to '$(currentName)';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; EndIf;&lt;/P&gt;&lt;P&gt;Next;&lt;/P&gt;&lt;P&gt;Set dataManagerTables = ;&lt;/P&gt;&lt;P&gt;Unqualify *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the section to load the table:&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;TableName&lt;/SPAN&gt;]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Key],&lt;/P&gt;&lt;P&gt;[English],&lt;/P&gt;&lt;P&gt;[&lt;SPAN style="font-size: 13.3333px;"&gt;Français&lt;/SPAN&gt;]&lt;/P&gt;&lt;P&gt; FROM [lib://Connector/FileName.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is TableName, filters(&lt;/P&gt;&lt;P&gt;Rotate(right)&lt;/P&gt;&lt;P&gt;))&lt;/P&gt;&lt;P&gt;WHERE not (Exists (Key));&lt;/P&gt;&lt;P&gt;RENAME Field Key to LANGUAGE_SELECTOR; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following error occurred:&lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 13px; background: rgba(255, 38, 38, 0.2);"&gt;Field 'English' not found&lt;/P&gt;&lt;P class="headline edc_error" style="padding: 0 10px; font-weight: bolder; color: #595959; font-family: 'Courier New'; font-size: 13px; background: rgba(255, 38, 38, 0.2);"&gt;The error occurred here:&lt;/P&gt;&lt;P class="edc_error" style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 13px; background: rgba(255, 38, 38, 0.2);"&gt;?&lt;/P&gt;&lt;P class="headline undefined" style="padding: 0 10px; font-weight: bolder; color: #595959; font-family: 'Courier New'; font-size: 13px;"&gt;Data has not been loaded. Please correct the error and try loading again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I remove the Filter Rotate(right) and the WHERE statement:&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;TableName&lt;/SPAN&gt;]:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Key],&lt;/P&gt;&lt;P&gt;[English],&lt;/P&gt;&lt;P&gt;[Français]&lt;/P&gt;&lt;P&gt; FROM [lib://Connector/FileName.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is TableName); &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;RENAME Field Key to LANGUAGE_SELECTOR; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The load works, but of course I don't have the rotated table but the original table as in the Excel file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Started loading data&lt;/P&gt;&lt;P style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 13px;"&gt;TableName&amp;lt;&amp;lt; &lt;SPAN style="color: #595959; font-family: 'Courier New'; font-size: 13px;"&gt;TableName&lt;/SPAN&gt; Lines fetched: 67&lt;/P&gt;&lt;P style="padding: 0 10px; color: #595959; font-family: 'Courier New'; font-size: 13px;"&gt;Creating search index Search index creation completed successfully&lt;/P&gt;&lt;P class="headline undefined" style="padding: 0 10px; font-weight: bolder; color: #595959; font-family: 'Courier New'; font-size: 13px;"&gt;App saved&lt;/P&gt;&lt;P class="headline summary_headline" style="padding: 0 10px; font-weight: bolder; color: #595959; font-family: 'Courier New'; font-size: 13px;"&gt;Finished successfully&lt;/P&gt;&lt;P class="summary" style="padding: 5px 10px; font-size: 11px; color: #595959; font-family: 'Courier New';"&gt;0 forced error(s)&lt;/P&gt;&lt;P class="summary" style="padding: 5px 10px; font-size: 11px; color: #595959; font-family: 'Courier New';"&gt;0 synthetic key(s)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R.W.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 08:57:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101880#M6814</guid>
      <dc:creator>rudywelvaert</dc:creator>
      <dc:date>2018-07-19T08:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101881#M6815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you try:&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;[&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;TableName&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;LOAD&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; *&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;FROM [lib://Connector/FileName.xlsx]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is TableName, filters(&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Rotate(right)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE not (Exists (Key));&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RENAME Field Key to LANGUAGE_SELECTOR;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 11:41:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101881#M6815</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-07-19T11:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101882#M6816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Normally you should pose a question by using the "&lt;STRONG&gt;Ask Question"&lt;/STRONG&gt; not by creating a discussion. Nobody gets any credits by discussing - whereas a question will add credit for people who try to help you ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know this can be a bit confusing - I only say this as a friendly advice....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 11:50:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101882#M6816</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-07-19T11:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101883#M6817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks this works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R.W.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 15:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101883#M6817</guid>
      <dc:creator>rudywelvaert</dc:creator>
      <dc:date>2018-07-19T15:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101884#M6818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're welcome - glad to be of help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 16:39:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101884#M6818</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-07-19T16:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Rotate an imported table</title>
      <link>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101885#M6819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was wrong it doesn't matter actually....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2018 16:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Rotate-an-imported-table/m-p/101885#M6819</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-07-19T16:39:51Z</dc:date>
    </item>
  </channel>
</rss>

