<?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: Export to Excel date field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673037#M244423</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is, that if you use, both text '' and date values, you will get a text field instead of a date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could generate this dimension during the load script:&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: 13.3333339691162px;"&gt;If([Close date]&amp;lt;&amp;gt;'01/01/1900', Date([Close date])) as [Close date]&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Oct 2014 12:31:49 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-07T12:31:49Z</dc:date>
    <item>
      <title>Export to Excel date field</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673032#M244418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I have a date type field that I load like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If([Close date]='01/01/1900','', Date([Close date]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem come when I export a table with this field to excel, the column in excel have text format instead date format. Can I load the date with a null value instead ''?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 11:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673032#M244418</guid>
      <dc:creator />
      <dc:date>2014-10-07T11:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel date field</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673033#M244419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure that in the chart properties, Close date, on the number tab, is marked as a date value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/68383_pastedImage_0.png" style="width: 620px; height: 229px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 11:18:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673033#M244419</guid>
      <dc:creator />
      <dc:date>2014-10-07T11:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel date field</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673034#M244420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, but this field is a dimension, not an expression...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 11:27:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673034#M244420</guid>
      <dc:creator />
      <dc:date>2014-10-07T11:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel date field</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673035#M244421</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;Please Try with below Code&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: 13.3333339691162px;"&gt;If([Close date]='01/01/1900',Null(), Date([Close date]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333339691162px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333339691162px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13.3333339691162px;"&gt;Joshmi&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 12:21:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673035#M244421</guid>
      <dc:creator />
      <dc:date>2014-10-07T12:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel date field</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673036#M244422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please remove your calculated dimension and use another strategy to filter your graph. It´s the best way&lt;/P&gt;&lt;P&gt;You can use a combination of Set Analysis/Supress Zeros to filter your object&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 12:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673036#M244422</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2014-10-07T12:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Export to Excel date field</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673037#M244423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is, that if you use, both text '' and date values, you will get a text field instead of a date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could generate this dimension during the load script:&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: 13.3333339691162px;"&gt;If([Close date]&amp;lt;&amp;gt;'01/01/1900', Date([Close date])) as [Close date]&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 12:31:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-Excel-date-field/m-p/673037#M244423</guid>
      <dc:creator />
      <dc:date>2014-10-07T12:31:49Z</dc:date>
    </item>
  </channel>
</rss>

