<?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: DATE field not reading QV when I load multiple excel sheet method. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792856#M667763</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesn't look obvious except that the dates are in M/D/YYYY which shouldn't really be an issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make qlikview explicitly recognize the format use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#( &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Req.dlv.dt , 'M/D/YYYY')) as ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the date to show in the app as MM/DD&amp;nbsp; (instead of single digits where applicable)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#( &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Req.dlv.dt , 'M/D/YYYY'),'MM/DD/YYYY') as ....&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Nov 2014 04:46:41 GMT</pubDate>
    <dc:creator>JonnyPoole</dc:creator>
    <dc:date>2014-11-21T04:46:41Z</dc:date>
    <item>
      <title>DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792851#M667758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi QV Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code to load multiple excel sheets from Sales folder. It worked fine but only problem is DATE field is not reading properly.I'm getting 01/01/1900 or 01/01/1899 format. Pls someone help me out. If there is anyother way to ready all the Excel Sheets and getting correct DATE field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEMP:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;filetime()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as file_time,&lt;/P&gt;&lt;P&gt;filepath()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as file_path,&lt;/P&gt;&lt;P&gt;filebasename()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as z_file,&lt;/P&gt;&lt;P&gt;timestamp(filetime())&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as time_stamp&lt;/P&gt;&lt;P&gt;FROM &lt;U&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '\t', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (TEMP)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;max(timestamp(file_time))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as max_time&lt;/P&gt;&lt;P&gt;resident TEMP;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINAL:&lt;/P&gt;&lt;P&gt;LOAD *, 1 as flag&lt;/P&gt;&lt;P&gt;resident TEMP where time_stamp=max_time;&lt;/P&gt;&lt;P&gt;drop table TEMP; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SAPsalesreport:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Sales Doc.]as [Sales Order #], &lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE(Req.dlv.dt, 'MM/DD/YYYY') as [Request Delivery DATE] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE(Req.dlv.dt, 'MM/DD/YYYY') as [Delivery Testing Date] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE(Dlv.Date, 'MM/DD/YYYY') as [Delivery DATE] , &lt;/P&gt;&lt;P&gt;&amp;nbsp; DATE(Dlv.Date, 'MM/DD/YYYY') as [Delivery Test Date2] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Prod order]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '\t', msq);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 04:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792851#M667758</guid>
      <dc:creator />
      <dc:date>2014-11-21T04:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792852#M667759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would happen if qlikview did not recognize the source data as dates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you load just '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Req.dlv.dt' in a new qlikview app from the same source file, what does the data values&amp;nbsp; look like ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 04:17:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792852#M667759</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-11-21T04:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792853#M667760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="11-18-2014 5-43-14 PM.jpg" class="jive-image" height="179" src="/legacyfs/online/71772_11-18-2014 5-43-14 PM.jpg" style="width: 428px; height: 179.483870967742px;" width="428" /&gt;&lt;/P&gt;&lt;P&gt;Here is my Source Date Field.&amp;nbsp; I'm getting &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px;"&gt; 01/01/1900 or 01/01/1899 format with no change even before or after trying to convert it to DATE format. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls Help me !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 04:23:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792853#M667760</guid>
      <dc:creator />
      <dc:date>2014-11-21T04:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792854#M667761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try DATE#() instead of DATE() &lt;/P&gt;&lt;P&gt;Date#&amp;nbsp; interprets the value as date&lt;/P&gt;&lt;P&gt;Date is just formatting &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 04:37:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792854#M667761</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2014-11-21T04:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792855#M667762</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;Use Date#()&lt;/P&gt;&lt;P&gt; then use Date()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAPsalesreport:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;[Sales Doc.]as [Sales Order #], &lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(DATE#(Req.dlv.dt, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Request Delivery DATE] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(DATE#(Req.dlv.dt, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Delivery Testing Date] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(DATE#(Dlv.Date, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Delivery DATE] , &lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(DATE#(Dlv.Date, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Delivery Test Date2] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Prod order]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(txt, codepage is 1252, embedded labels, delimiter is '\t', msq);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 04:38:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792855#M667762</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-11-21T04:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792856#M667763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It doesn't look obvious except that the dates are in M/D/YYYY which shouldn't really be an issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make qlikview explicitly recognize the format use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#( &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Req.dlv.dt , 'M/D/YYYY')) as ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the date to show in the app as MM/DD&amp;nbsp; (instead of single digits where applicable)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#( &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Req.dlv.dt , 'M/D/YYYY'),'MM/DD/YYYY') as ....&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 04:46:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792856#M667763</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-11-21T04:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792857#M667764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;still No luck,&lt;/P&gt;&lt;P&gt;I'm not getting any values on dashboard when I use this script. &lt;/P&gt;&lt;P&gt;I'm getting "(unavailable) [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Request Delivery DATE]" ......... list box.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;Date(DATE#(Req.dlv.dt, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Request Delivery DATE] ,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&amp;nbsp; Date(DATE#(Req.dlv.dt, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Delivery Testing Date] ,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&amp;nbsp; Date(DATE#(Dlv.Date, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Delivery DATE] ,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;&amp;nbsp; Date(DATE#(Dlv.Date, 'MM/DD/YYYY'),'MM/DD/YYYY') as [Delivery Test Date2] ,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 05:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792857#M667764</guid>
      <dc:creator />
      <dc:date>2014-11-21T05:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792858#M667765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could it be that your date is actually stored in a complete different format...see the column A7 of your excel screenshot. Maybe clarify whats the actual input data format&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 05:08:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792858#M667765</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2014-11-21T05:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792859#M667766</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;Are you performing any other operation after this conversion.&lt;/P&gt;&lt;P&gt;Looks like&amp;nbsp; [&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Request Delivery DATE] &lt;/SPAN&gt;&amp;nbsp; is dropped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What about [Delivery Testing Date] field It is also unavailable or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If possible then post SALESREPORT_111.XLS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 05:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792859#M667766</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-11-21T05:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: DATE field not reading QV when I load multiple excel sheet method.</title>
      <link>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792860#M667767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you soooooooooooooooo much. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cool.png" /&gt; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cool.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even though it is a Excel Sheet, that is some different format. while loading the Excel Sheet I did proper transform option and renamed the field there itself and finished it. Now with out using the date converion.&lt;/P&gt;&lt;P&gt;*****&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Date(Date#( &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f6f6f6;"&gt;Req.dlv.dt , 'M/D/YYYY'),'MM/DD/YYYY') ****&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I'm getting the proper format as such it was on excel sheet. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2014 10:38:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/DATE-field-not-reading-QV-when-I-load-multiple-excel-sheet/m-p/792860#M667767</guid>
      <dc:creator />
      <dc:date>2014-11-21T10:38:14Z</dc:date>
    </item>
  </channel>
</rss>

