<?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: NUMERIC VALUE CONVERT TO DATE ISSUE in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830472#M1003787</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please close your thread if your question is answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jun 2015 19:28:16 GMT</pubDate>
    <dc:creator>MarcoWedel</dc:creator>
    <dc:date>2015-06-29T19:28:16Z</dc:date>
    <item>
      <title>NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830466#M1003781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good afternoon all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to QV, so please excuse the potential simplicity of my question.&amp;nbsp; I have just pulled in a table file from a Microsoft SQL server. I am looking to get the date range however, when I make a list box and what's supposed to show as the dates is showing as numeric values with decimal points.&amp;nbsp; For an example, please see attached, the left hand side is the dates and the right hand side is the unit.&amp;nbsp;&amp;nbsp; When I pull the data into excel I am getting the date mm/dd/yy plus the time of date (hh:mm) thus it looks like this ==&amp;gt; mm/dd/yyyy hh:mm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I r&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;ectify this issue so that the numeric values are displayed as dates i.e. Jan, Feb, etc?&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate any and all help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 19:40:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830466#M1003781</guid>
      <dc:creator />
      <dc:date>2015-05-21T19:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830467#M1003782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do it in the script using timestamp() function:&lt;/P&gt;&lt;P&gt;timestamp(YourFieldName) as YourFieldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will use your system format.&amp;nbsp; If you want to specify any other format:&lt;/P&gt;&lt;P&gt;timestamp(YourFieldName, 'MM/DD/YYYY hh:mm') as YourFieldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want only date without time:&lt;/P&gt;&lt;P&gt;date(floor(YourFieldName)) as YourFieldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you cannot change the script, go to the Document properties, tab Number, and change format settings for this field to timestamp or date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 21:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830467#M1003782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-21T21:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830468#M1003783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want more detail, there are some post of HIC&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 May 2015 23:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830468#M1003783</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-05-21T23:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830469#M1003784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=month(date(today(),'MMM'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if want to create a list box with values as Jan, feb,........ Dec.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then click rightclick -&amp;gt;new sheet object-&amp;gt;-&amp;gt; listbox-&amp;gt; in general lab under field select expression -&amp;gt; type above expression . replaye today() , with your &amp;lt;date field &amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 May 2015 04:40:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830469#M1003784</guid>
      <dc:creator>arusanah</dc:creator>
      <dc:date>2015-05-22T04:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830470#M1003785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All, Thank you very much! Above worked very well!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 18:51:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830470#M1003785</guid>
      <dc:creator />
      <dc:date>2015-06-03T18:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830471#M1003786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DayName(yourfield) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will also return the date part of your timestamp value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 19:26:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830471#M1003786</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-29T19:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830472#M1003787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please close your thread if your question is answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jun 2015 19:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830472#M1003787</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-29T19:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: NUMERIC VALUE CONVERT TO DATE ISSUE</title>
      <link>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830473#M1003788</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;Your date field is with time stamp. If you wanna see dates without changing in the script. Go to listbox properties -&amp;gt; Number -&amp;gt; Override settings -&amp;gt; Select Time stamp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 06:19:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/NUMERIC-VALUE-CONVERT-TO-DATE-ISSUE/m-p/830473#M1003788</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-06-30T06:19:40Z</dc:date>
    </item>
  </channel>
</rss>

