<?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: Remove last 10 numbers from values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439645#M1160262</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;you could load it also as a timestamp to keep the time of the date:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD Timestamp(Timestamp#(TVRZ,'YYYYMMDDhhmmssffff')) as YourTimestamp INLINE [&lt;/P&gt;&lt;P&gt;TVRZ&lt;/P&gt;&lt;P&gt;201210050700120000&lt;/P&gt;&lt;P&gt;201210050700130000&lt;/P&gt;&lt;P&gt;201210090700150000&lt;/P&gt;&lt;P&gt;201210090700140000&lt;/P&gt;&lt;P&gt;201210090700160000&lt;/P&gt;&lt;P&gt;201210100700190000&lt;/P&gt;&lt;P&gt;201210100700170000&lt;/P&gt;&lt;P&gt;201210100700180000&lt;/P&gt;&lt;P&gt;201210110700140000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Jan 2013 15:46:28 GMT</pubDate>
    <dc:creator>rbecher</dc:creator>
    <dc:date>2013-01-21T15:46:28Z</dc:date>
    <item>
      <title>Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439640#M1160257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A simple question from a Qlikview personal edition user. I'm using an Oracle database with a numeric column which looks like the follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 239px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="18" width="239"&gt;TVRZ&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="18"&gt;201210050700120000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="17"&gt;201210050700130000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="17"&gt;201210090700150000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="17"&gt;201210090700140000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="17"&gt;201210090700160000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="17"&gt;201210100700190000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="17"&gt;201210100700170000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl65" height="17"&gt;201210100700180000&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl64" height="17"&gt;201210110700140000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These numbers are supposed to be dates, the first 8 digits represents a date. I dont know why the values are 18 digits long, it is still to long if it is including the hh:mm:ss.&lt;/P&gt;&lt;P&gt;I still want to load it as a date so i can do some calulations with it. Does somebody know how i can load the column without the last 10 digits and load it as a normal date value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 13:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439640#M1160257</guid>
      <dc:creator />
      <dc:date>2013-01-21T13:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439641#M1160258</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;To get a date from this string use left(string,n)&amp;nbsp; and makedate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;makedate(left(string,4), mid(string(5,2), mid(string(7,2))&amp;nbsp; will transform string as yyyymmdd&lt;/P&gt;&lt;P&gt;you can add a date format&amp;nbsp; date(makedate(...), 'DD/MM//YYY')&amp;nbsp; or whatever&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are sure you need only 6 use&lt;/P&gt;&lt;P&gt;makedate(left(string,4), mid(string(5,2))&amp;nbsp; will transform string as yyyymm01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 13:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439641#M1160258</guid>
      <dc:creator />
      <dc:date>2013-01-21T13:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439642#M1160259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your quick response but i still get the same outcome as before (The colum is an numeric (131) type). I want indeed an 8 digit date, not the 6 i mentioned before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This are the load statements i used, this one gives me an error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;LOAD&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; *,&lt;BR /&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;makedate&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;left&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;TVRZ&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;,4), &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;mid&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;TVRZ(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;5,2), &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;mid&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;TVRZ(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;7,2))&lt;BR /&gt;;&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;SQL&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; SELECT *&lt;BR /&gt;FROM PRODPIV."GBA_VVOGANV"; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt;"&gt;And this one (changed the ( in an ,) still gives me the 18 digit values:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;LOAD&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; *,&lt;BR /&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;makedate&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;left&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;TVRZ&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;,4), &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;mid&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;TVRZ&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;, 5,2), &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;mid&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;TVRZ&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;,7,2))&lt;BR /&gt;;&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;SQL&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; SELECT *&lt;BR /&gt;FROM PRODPIV."GBA_VVOGANV"; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;I also tried putting 'AS test' behind it, but then 'test' stayes empty.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;This is my pre setted timestamp:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;SET&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: gray; font-size: 9pt;"&gt;TimeFormat&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;='h:mm:ss';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;SET&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: gray; font-size: 9pt;"&gt;DateFormat&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;='DD-MM-YYYY';&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;SET&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: gray; font-size: 9pt;"&gt;TimestampFormat&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;='DD-MM-YYYY h:mm:ss[.fff]'; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 14:34:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439642#M1160259</guid>
      <dc:creator />
      <dc:date>2013-01-21T14:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439643#M1160260</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'm not sure to understand.&lt;/P&gt;&lt;P&gt;If you use "makedate(left(TRVZ,4), ....) as Date" it will return a date field.&lt;/P&gt;&lt;P&gt;the date field will output according the date format.&lt;/P&gt;&lt;P&gt;So either you specify a specific date format like "date(makedate(...),'DD-MM-YY') " for example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then check it in properties/number/date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you join a picture?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 14:58:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439643#M1160260</guid>
      <dc:creator />
      <dc:date>2013-01-21T14:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439644#M1160261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe this is what you want (see attached).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD date(date#(left(TVRZ, 8), 'YYYYMMDD'), 'YYYY/MM/DD') as Date INLINE [&lt;/P&gt;&lt;P&gt;TVRZ&lt;/P&gt;&lt;P&gt;201210050700120000&lt;/P&gt;&lt;P&gt;201210050700130000&lt;/P&gt;&lt;P&gt;201210090700150000&lt;/P&gt;&lt;P&gt;201210090700140000&lt;/P&gt;&lt;P&gt;201210090700160000&lt;/P&gt;&lt;P&gt;201210100700190000&lt;/P&gt;&lt;P&gt;201210100700170000&lt;/P&gt;&lt;P&gt;201210100700180000&lt;/P&gt;&lt;P&gt;201210110700140000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 15:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439644#M1160261</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2013-01-21T15:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439645#M1160262</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;you could load it also as a timestamp to keep the time of the date:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD Timestamp(Timestamp#(TVRZ,'YYYYMMDDhhmmssffff')) as YourTimestamp INLINE [&lt;/P&gt;&lt;P&gt;TVRZ&lt;/P&gt;&lt;P&gt;201210050700120000&lt;/P&gt;&lt;P&gt;201210050700130000&lt;/P&gt;&lt;P&gt;201210090700150000&lt;/P&gt;&lt;P&gt;201210090700140000&lt;/P&gt;&lt;P&gt;201210090700160000&lt;/P&gt;&lt;P&gt;201210100700190000&lt;/P&gt;&lt;P&gt;201210100700170000&lt;/P&gt;&lt;P&gt;201210100700180000&lt;/P&gt;&lt;P&gt;201210110700140000&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 15:46:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439645#M1160262</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-01-21T15:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439646#M1160264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*Removed*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 15:49:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439646#M1160264</guid>
      <dc:creator />
      <dc:date>2013-01-21T15:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439647#M1160266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Date returns no values, here is a picture:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="31373" __jive_id="31371" class="jive-image-thumbnail jive-image jiveImage" alt="Doc21.jpg" src="https://community.qlik.com/legacyfs/online/31373_Doc21.jpg" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reaction Nicole and Ralf. But the result stayes the same, the new field is always empty as in the picture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 15:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439647#M1160266</guid>
      <dc:creator />
      <dc:date>2013-01-21T15:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439648#M1160268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to get rid of the makedate() line in your script and replace it with date(date#(left(TVRZ, 8), 'YYYYMMDD'), 'YYYY/MM/DD') as Date or with the timestamp that Ralf suggested (the screenshot that you have above still has the makedate() function in it).&amp;nbsp; Then reload your document.&amp;nbsp; The listbox should then just contain the field 'Date'.&amp;nbsp; (It's working in the document I attached above, so we must be missing a step here.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 16:07:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439648#M1160268</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2013-01-21T16:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439649#M1160270</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;as far as I can see you made a mistake in the makedate using RIGHT instead of LEFT for the year.&lt;/P&gt;&lt;P&gt;So you get year = 0000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 16:23:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439649#M1160270</guid>
      <dc:creator />
      <dc:date>2013-01-21T16:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439650#M1160272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not just use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Timestamp#(TVRZ,'YYYYMMDDhhmmssffff')) as YourDate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..it's pretty straight forward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp; Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 16:32:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439650#M1160272</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-01-21T16:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439651#M1160274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The response from &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/rbecher" id="jive-313612164565618236885" style="background-color: #ffffff; font-size: 12px; color: #007fc0; text-decoration: initial; font-weight: bold; font-family: Arial; text-align: center;"&gt;Ralf Becher&lt;/A&gt; should work (using timestamp# function). If it is not working could be because the data type in the database does not convert to text in the expected way, or the default format for the Date field in Document Properties is not assigned to a date type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you attach a document with only this field extracted?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Jan 2013 16:38:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439651#M1160274</guid>
      <dc:creator />
      <dc:date>2013-01-21T16:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439652#M1160275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the help but the result is always an empty column. I indeed think Juan is right when mentioning the not converting the data in the expected way. I did some checks, and if i load the data in excel it looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="229"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" style="border-bottom: white 1.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #4f81bd; color: white; font-size: 11pt; border-top: medium none; font-weight: bold; border-right: white 0.5pt solid;" width="229"&gt;TVRZ&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #b8cce4; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,01212E+17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #dbe5f1; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,0121E+17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #b8cce4; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,0121E+17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #dbe5f1; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,01211E+17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #b8cce4; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,01211E+17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #dbe5f1; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,0121E+17&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" height="20" style="border-bottom: white 0.5pt solid; border-left: white 0.5pt solid; font-family: Calibri; background: #b8cce4; color: black; font-size: 11pt; border-top: medium none; font-weight: 400; border-right: white 0.5pt solid;"&gt;2,0121E+17&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks like the Comma needs to be removed first or something. Any thoughts?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Juan, i added an QVW file as suggested&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2013 08:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439652#M1160275</guid>
      <dc:creator />
      <dc:date>2013-01-22T08:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439653#M1160276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seems to work, but I don't know why this must be so complicated (see listbox expression, should work also in script):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Date(Date#(text(floor(TVRZ/10000000000)),'YYYYMMDD'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2013 10:27:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439653#M1160276</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2013-01-22T10:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Remove last 10 numbers from values</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439654#M1160277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its working now, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jan 2013 15:50:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-last-10-numbers-from-values/m-p/439654#M1160277</guid>
      <dc:creator />
      <dc:date>2013-01-22T15:50:18Z</dc:date>
    </item>
  </channel>
</rss>

