<?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: Convert a bad string to a date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360350#M704680</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell how the data looks of field baddate1. If the data of the field looks like below eg every time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;baddate1 &lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 236px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" style="height: 15pt; width: 177pt;" width="236"&gt;sum of&amp;nbsp; February 2012 /Bud.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 236px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="height: 15pt; width: 177pt;" width="236"&gt;sum of March 2012 /Bud.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Apr 2012 12:01:55 GMT</pubDate>
    <dc:creator>jagannalla</dc:creator>
    <dc:date>2012-04-25T12:01:55Z</dc:date>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360340#M704666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field that I'm trying to extract a date from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's in the format, text February 2012 text.&lt;/P&gt;&lt;P&gt;Using the functions subfield and mid I now have February 2012.&lt;/P&gt;&lt;P&gt;How can I convert this to a date field, e.g. 01/02/2012&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;Tony&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: QlikQuest Thanks for the response. I'm not at the office but I've created&amp;nbsp; a similiar scenario. Thanks again. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 19:19:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360340#M704666</guid>
      <dc:creator />
      <dc:date>2012-04-19T19:19:20Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360341#M704667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Can u upload the data file by chance??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 19:34:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360341#M704667</guid>
      <dc:creator />
      <dc:date>2012-04-19T19:34:46Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360342#M704668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date(yourdate#('01/' &amp;amp; left(yourdate,3) &amp;amp; '/' &amp;amp; right(yourdate,4),'DD/MMM/YYYY')) as newdate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 20:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360342#M704668</guid>
      <dc:creator />
      <dc:date>2012-04-19T20:04:43Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360343#M704669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whoops just noticed I made a mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load date(date#('01/' &amp;amp; left([Bad Date],3) &amp;amp; '/' &amp;amp; right([Bad Date],4),'DD/MMM/YYYY')) as newdate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 20:33:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360343#M704669</guid>
      <dc:creator />
      <dc:date>2012-04-19T20:33:31Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360344#M704670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Juan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are a top guy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've amended your suggestion to include the mid function to strip out the bad text and it works a treat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date(date#('01/' &amp;amp; left(mid(baddate,3),3) &amp;amp; '/' &amp;amp; right(mid(baddate,3),4),'DD/MMM/YYYY')) as newdate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Many thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Apr 2012 21:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360344#M704670</guid>
      <dc:creator />
      <dc:date>2012-04-19T21:28:25Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360345#M704671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think there is any need to substring the baddate. You should be able to read it directly with Date#() by supplying the mask.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date(Date#(baddate, 'MMM YYYY'), 'DD/MMM/YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 00:53:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360345#M704671</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-04-20T00:53:34Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360346#M704672</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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Yes. I agree with Rob.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; It is working perfectly without any use of string functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Andrew Hudson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Apr 2012 00:56:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360346#M704672</guid>
      <dc:creator>adhudson</dc:creator>
      <dc:date>2012-04-20T00:56:36Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360347#M704674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Rob, Andrew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;When I your suggestion,&amp;nbsp; date(Date#(baddate, 'MMM YYYY'), 'DD/MMM/YYYY') &lt;/P&gt;&lt;P&gt;The script executes OK but no data is returned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you could offer any suggestions I'd appreciate it.&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;Tony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Apr 2012 08:35:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360347#M704674</guid>
      <dc:creator />
      <dc:date>2012-04-22T08:35:26Z</dc:date>
    </item>
    <item>
      <title>Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360348#M704676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tony, can you provide a few sample lines?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 Apr 2012 16:24:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360348#M704676</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2012-04-22T16:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360349#M704678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've attached a simple spreadsheet with the type of string supplied from the user and&lt;/P&gt;&lt;P&gt;a QV doc applying your suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However no data is returned when I apply &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;date(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;date# etc.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really would like not to have to substring the field as per your suggestion.&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;Tony&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 11:48:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360349#M704678</guid>
      <dc:creator />
      <dc:date>2012-04-25T11:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360350#M704680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you tell how the data looks of field baddate1. If the data of the field looks like below eg every time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;baddate1 &lt;/STRONG&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 236px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" style="height: 15pt; width: 177pt;" width="236"&gt;sum of&amp;nbsp; February 2012 /Bud.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 236px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="height: 15pt; width: 177pt;" width="236"&gt;sum of March 2012 /Bud.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 12:01:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360350#M704680</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-25T12:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360351#M704681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this in the case. Use this code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#(Trim(SubField(mid(baddate1,7),'/')),'MMM YYYY'),'DD/MM/YYYY') as DateField&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 12:50:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360351#M704681</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-25T12:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360352#M704682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That works a treat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to avoid using Mid and Subfield, but it looks like I have to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again, your help is much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 13:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360352#M704682</guid>
      <dc:creator />
      <dc:date>2012-04-25T13:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360353#M704683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it real helps you, Can you mark as helpfull answer for my post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 13:58:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360353#M704683</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-04-25T13:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360354#M704684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I accidentally flagged my own response as helpfull, I thought I was&lt;/P&gt;&lt;P&gt;flagging you as helpful)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will happily flag your response as helpfull if I can find the option.&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;Tony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2012 14:32:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360354#M704684</guid>
      <dc:creator />
      <dc:date>2012-04-25T14:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360355#M704685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, I am total beginner, and had very small knowledge of script functions. I am trying to understand what &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;&amp;nbsp; " Date(Date#(Trim(SubField(mid(baddate1,7),'/')),'MMM YYYY'),'DD/MM/YYYY') as DateField "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;does. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thik I had simillar problem as Brian, i have date in format 1.13, 2.13,...10.13, 11.13. (it is the only date column in my table with over 75000 rows)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wont be able to make more difficult calculations (while QV do not recognize my date field). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I make QV to understand this date format?&amp;nbsp; or can I make QV to calculate new dimensions like Month and Year from my "mesiac_rok" = month_year column?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 09:28:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360355#M704685</guid>
      <dc:creator />
      <dc:date>2014-07-02T09:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360356#M704686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Start by reading this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date and Date# are conversion. First he determins what format he has, in this case MMM YYYY and this he wants to convert to DD/MM/YYYY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also have to be aware of what format your qlikview is in. You can changes these formats in the main script where SET format is written. - Create a new post where you need help, and attach a sample, then it is easier for people to respond, and then we dont spam this topic which is already answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: sorry my browser went crazy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here it is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="unlinked" title="http://community.qlik.com/servlet/JiveServlet/previewBody/3102-102-4-4191/DateFields-TechBrief-US_v2.pdf"&gt;http://community.qlik.com/servlet/JiveServlet/previewBody/3102-102-4-4191/DateFields-TechBrief-US_v2.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 09:33:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360356#M704686</guid>
      <dc:creator />
      <dc:date>2014-07-02T09:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: Convert a bad string to a date</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360357#M704687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, you will hear about me soon &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jul 2014 09:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-a-bad-string-to-a-date/m-p/360357#M704687</guid>
      <dc:creator />
      <dc:date>2014-07-02T09:49:23Z</dc:date>
    </item>
  </channel>
</rss>

