<?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: String from excel to date in Qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987284#M979390</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I corrected it now to 8 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My apologies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2015 06:59:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-08-25T06:59:05Z</dc:date>
    <item>
      <title>String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987275#M979381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to convert the following string from excel to a date value in Qlikview in the edit script as such:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE(MID(FIELDNAME,34,8), 'YYYY/MM/DD') AS DATEFIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, it is not returning any values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone be of assistance please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:11:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987275#M979381</guid>
      <dc:creator />
      <dc:date>2015-08-25T06:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987276#M979382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hie...&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(num#(Feildname,'Current format of date'),'Which format you want') as Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;Hope this will helps you...!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohammad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987276#M979382</guid>
      <dc:creator>mohammadkhatimi</dc:creator>
      <dc:date>2015-08-25T06:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987277#M979383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could this script be used if the date in excel in is the middle of a string value?&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;DATE&lt;STRONG&gt;(MID(FIELDNAME,34,4)&lt;/STRONG&gt;, 'YYYY/MM/DD') AS DATEFIELD&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:16:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987277#M979383</guid>
      <dc:creator />
      <dc:date>2015-08-25T06:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987278#M979384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your string in the format 'YYYY/MM/DD' then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE#(MID(FIELDNAME,34,4), 'YYYY/MM/DD') AS DATEFIELD&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;DATE#(MID(FIELDNAME,34,4), 'your format') AS DATEFIELD&lt;/P&gt;&lt;P&gt;hth&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:18:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987278#M979384</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-25T06:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987279#M979385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes mid function can be used in qlikview. below is the qv help&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor1260"&gt;&lt;/A&gt;&lt;A name="mid"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;&lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;mid&lt;/SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;s, n1[, n2 ]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Substring of the string &lt;SPAN class="Italic"&gt;s&lt;/SPAN&gt;. The result is the string starting at character &lt;SPAN class="Italic"&gt;n1&lt;/SPAN&gt; with the length of &lt;SPAN class="Italic"&gt;n2&lt;/SPAN&gt; characters. If &lt;SPAN class="Italic"&gt;n2&lt;/SPAN&gt; is omitted, the function returns the rightmost part of the string starting at character &lt;SPAN class="Italic"&gt;n1&lt;/SPAN&gt;. The positions in the string are numbered from &lt;SPAN class="Italic"&gt;1&lt;/SPAN&gt; and up. &lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;mid&lt;/SPAN&gt;('abcdef',3 )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;'cdef'&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;mid&lt;/SPAN&gt;('abcdef',3, 2 )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;'cd'&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;mid&lt;/SPAN&gt;( Date,3 )&lt;/SPAN&gt; where &lt;SPAN class="Italic"&gt;Date&lt;/SPAN&gt; = 970714 returns &lt;SPAN class="Italic"&gt;0714&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;mid&lt;/SPAN&gt;( Date,3,2 )&lt;/SPAN&gt; where &lt;SPAN class="Italic"&gt;Date&lt;/SPAN&gt; = 970714 returns &lt;SPAN class="Italic"&gt;07&lt;/SPAN&gt;. &lt;/P&gt;&lt;P&gt;For a more complicated example, see the index function below. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987279#M979385</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-25T06:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987280#M979386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be more useful if you showed us what your source data looked like. Otherwise we are just guessing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:20:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987280#M979386</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-25T06:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987281#M979387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How your &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FIELDNAME data looks like?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987281#M979387</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-08-25T06:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987282#M979388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you post some example of your excel string?&lt;/P&gt;&lt;P&gt;from what I understand you're loading in Qlik, (with mid(FIELDNAME, 34,4)) 4 char from an excel file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:27:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987282#M979388</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-08-25T06:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987283#M979389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are loading 4 chars from source, to allow Qlikview to consider it as date, it needs to know your format thru Date# function, once QV clears first hurdle of taking in as a date in number form using Date#, it can be later formatted in any form using Date function(Without #).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987283#M979389</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2015-08-25T06:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987284#M979390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I corrected it now to 8 chars.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My apologies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 06:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987284#M979390</guid>
      <dc:creator />
      <dc:date>2015-08-25T06:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987285#M979391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Date(Date#(MID(FIELDNAME,34,8), 'YYYYMMDD')) AS DATEFIELD&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: 13px;"&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: 13px;"&gt;if the excel format is different from &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;YYYYMMDD, change it&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 07:07:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987285#M979391</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-08-25T07:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987286#M979392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post sample &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 07:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987286#M979392</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2015-08-25T07:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: String from excel to date in Qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987287#M979393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for assistance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 12:03:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/String-from-excel-to-date-in-Qlikview/m-p/987287#M979393</guid>
      <dc:creator />
      <dc:date>2015-08-26T12:03:18Z</dc:date>
    </item>
  </channel>
</rss>

