<?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: Crosstable load with dates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423394#M700137</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET DateFormat='DD.MM.YYYY';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include this before the load statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2012 11:46:54 GMT</pubDate>
    <dc:creator>giakoum</dc:creator>
    <dc:date>2012-10-17T11:46:54Z</dc:date>
    <item>
      <title>Crosstable load with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423393#M700135</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 am trying to load data from excel by using the crostable load function. My problem is that the dates are not pulled through as dates but as numbers, How do I make it pull through as dates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the load statement is...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORECAST:&lt;/P&gt;&lt;P&gt;crosstable (Date, Units)&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[.\Prepped Files\Forecast\Forecast May2012.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached a sample of the data I am tying to import.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2012 11:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423393#M700135</guid>
      <dc:creator />
      <dc:date>2012-10-17T11:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstable load with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423394#M700137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET DateFormat='DD.MM.YYYY';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;include this before the load statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2012 11:46:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423394#M700137</guid>
      <dc:creator>giakoum</dc:creator>
      <dc:date>2012-10-17T11:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Crosstable load with dates</title>
      <link>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423395#M700138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The CROSSTABLE Load will transform your Date headers into text values, you need a second load to re-interprete as Date numeric values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FORECAST_TMP:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; crosstable (Date, Units)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; LOAD&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; [.\Forecast May2012.xlsx]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; (ooxml, embedded labels, table is Sheet1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FORECAST:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;NoConcatenate LOAD&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt; Barcode, &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Date(num#(Date)) as Date, &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Units &lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Resident FORECAST_TMP;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;drop table FORECAST_TMP;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2012 11:46:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Crosstable-load-with-dates/m-p/423395#M700138</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-10-17T11:46:57Z</dc:date>
    </item>
  </channel>
</rss>

