<?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: Dinamyc load from excel an transpose in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1557507#M441010</link>
    <description>Hello Piro, I was looking at the case.&lt;BR /&gt;The drawback I see is that, just as the width of the table is variable, the names of the date fields will also be variable. In this way, taking the start value and the end can change between one recharge and another and thus there may be inconsistencies in the information.&lt;BR /&gt;Is there a way you can change the way you fill out the data on the excel sheet or is it a file that you take from a database?</description>
    <pubDate>Sat, 16 Mar 2019 14:29:23 GMT</pubDate>
    <dc:creator>tincholiver</dc:creator>
    <dc:date>2019-03-16T14:29:23Z</dc:date>
    <item>
      <title>Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556278#M440848</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I've this issue:&lt;/P&gt;&lt;P&gt;Excel sheet with some columns that contains basic information about activities and several columns with dates that contains activity planning&lt;/P&gt;&lt;P&gt;Ex.&lt;/P&gt;&lt;P&gt;columns --&amp;gt; Activity Type; Activity description; Stard date; End Date; 01/01/2019; 01/02/2019; 01/03/2019 ....&lt;/P&gt;&lt;P&gt;values --&amp;gt; ACT001; Car Production; 01/01/2019; 01/20/2019; 0; 1; 2; ....&lt;/P&gt;&lt;P&gt;I would like to upload those information into a tab that will have&lt;/P&gt;&lt;P&gt;Activity Type; Activity description; Stard date; End Date; Reference date; Calue&lt;/P&gt;&lt;P&gt;ACT001; Car Production; 01/01/2019; 01/20/2019; 01/01/2019; 0&lt;/P&gt;&lt;P&gt;ACT001; Car Production; 01/01/2019; 01/20/2019; 01/02/2019; 1&lt;/P&gt;&lt;P&gt;ACT001; Car Production; 01/01/2019; 01/20/2019; 01/03/2019; 2&lt;/P&gt;&lt;P&gt;Basically I want to dinamicalli read all the columns with dates and transpose them into row&lt;/P&gt;&lt;P&gt;I hope I was clear in the request&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:15:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556278#M440848</guid>
      <dc:creator>PiroGiovanni</dc:creator>
      <dc:date>2024-11-16T21:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556283#M440855</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;load the script below, the result is:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example.png" style="width: 453px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/7969iDA3487291113AE60/image-size/large?v=v2&amp;amp;px=999" role="button" title="example.png" alt="example.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;BR /&gt;Table:&lt;BR /&gt;CrossTable([Ref date], Value, 4)&lt;BR /&gt;LOAD [Act Type],&lt;BR /&gt;[Act descr],&lt;BR /&gt;Start,&lt;BR /&gt;end,&lt;BR /&gt;[43466],&lt;BR /&gt;[43467],&lt;BR /&gt;[43468],&lt;BR /&gt;[43469],&lt;BR /&gt;[43470],&lt;BR /&gt;[43471],&lt;BR /&gt;[43472],&lt;BR /&gt;[43473],&lt;BR /&gt;[43474],&lt;BR /&gt;[43475],&lt;BR /&gt;[43476],&lt;BR /&gt;[43477],&lt;BR /&gt;[43478]&lt;BR /&gt;FROM example.xlsx (ooxml, embedded labels, table is INPUT);&lt;BR /&gt;STORE Table into Example.qvd(qvd);DROP Table Table;&lt;/P&gt;&lt;P&gt;Directory;&lt;BR /&gt;LOAD&lt;BR /&gt;[Act Type],&lt;BR /&gt;[Act descr],&lt;BR /&gt;Date(Start,'DD/MM/YYYY') as Start,&lt;BR /&gt;Date(end,'DD/MM/YYYY') as end,&lt;BR /&gt;Date(num#([Ref date]),'DD/MM/YYYY') as [Ref date] ,&lt;BR /&gt;Value&lt;BR /&gt;FROM Example.qvd(qvd);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;tell me if the solution served you.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2019 22:52:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556283#M440855</guid>
      <dc:creator>tincholiver</dc:creator>
      <dc:date>2019-03-13T22:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556327#M440866</link>
      <description>Hi this works but is not what I need because with this script I have fixed dates&lt;BR /&gt;[43466],&lt;BR /&gt;[43467],&lt;BR /&gt;[43468],&lt;BR /&gt;[43469],&lt;BR /&gt;[43470],&lt;BR /&gt;[43471],&lt;BR /&gt;[43472],&lt;BR /&gt;[43473],&lt;BR /&gt;[43474],&lt;BR /&gt;[43475],&lt;BR /&gt;[43476],&lt;BR /&gt;[43477],&lt;BR /&gt;[43478]&lt;BR /&gt;And I need to have them dynamic because in one file I can have those dates in another I can have other and I don't know it in advance</description>
      <pubDate>Thu, 14 Mar 2019 05:39:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556327#M440866</guid>
      <dc:creator>PiroGiovanni</dc:creator>
      <dc:date>2019-03-14T05:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556481#M440882</link>
      <description>I understand, and you do not know how many columns of width that file will have?</description>
      <pubDate>Thu, 14 Mar 2019 11:59:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1556481#M440882</guid>
      <dc:creator>tincholiver</dc:creator>
      <dc:date>2019-03-14T11:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1557438#M441003</link>
      <description>&lt;P&gt;No this is the issue, it may be 10 as it may be 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to read the full sheet check which columns are filled and after apply the logic&lt;/P&gt;&lt;P&gt;Do you have any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In case instead I'll be able to fix to 100 or something like that how can I solve the issue?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 21:08:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1557438#M441003</guid>
      <dc:creator>PiroGiovanni</dc:creator>
      <dc:date>2019-03-15T21:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1557507#M441010</link>
      <description>Hello Piro, I was looking at the case.&lt;BR /&gt;The drawback I see is that, just as the width of the table is variable, the names of the date fields will also be variable. In this way, taking the start value and the end can change between one recharge and another and thus there may be inconsistencies in the information.&lt;BR /&gt;Is there a way you can change the way you fill out the data on the excel sheet or is it a file that you take from a database?</description>
      <pubDate>Sat, 16 Mar 2019 14:29:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1557507#M441010</guid>
      <dc:creator>tincholiver</dc:creator>
      <dc:date>2019-03-16T14:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dinamyc load from excel an transpose</title>
      <link>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1558794#M441103</link>
      <description>&lt;P&gt;unfortunatelly no way to change the excel &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2019 08:30:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dinamyc-load-from-excel-an-transpose/m-p/1558794#M441103</guid>
      <dc:creator>PiroGiovanni</dc:creator>
      <dc:date>2019-03-20T08:30:23Z</dc:date>
    </item>
  </channel>
</rss>

