<?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: Problems with Dateformat and matching date formats in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385358#M697076</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot use QlikView functions in SQL, it doesn't understand this.&amp;nbsp; Use preceeding load, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date_added,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY') as date,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as year,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as month,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as week&lt;BR /&gt;;&lt;BR /&gt;SELECT&lt;BR /&gt; date_added&lt;BR /&gt;from mysql_database.orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Mar 2013 15:48:11 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-03-25T15:48:11Z</dc:date>
    <item>
      <title>Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385355#M697073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a problem with matching my data from two different sources:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. mysql Database with the date format: "30.11.2011 17:23:42" -&amp;gt;&amp;nbsp; "DD.MM.YYYY hh:mm:ss"&lt;/P&gt;&lt;P&gt;2. Google Adwords with the date format: "20111130" -&amp;gt; "YYYYMMDD"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My goal is to have a matching "date" field and the possibilty to select Year, Month and week.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Mysql: when i add &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;year(date_added) as year,&lt;/P&gt;&lt;P&gt;month(date_added) as month,&lt;/P&gt;&lt;P&gt;week(date_added) as week&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to my query i get in return:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year -&amp;gt; proper years like 2011,2012 etc.&lt;/P&gt;&lt;P&gt;Month -&amp;gt; displayed as 1,2,3...etc but not as march, may, june etc.&lt;/P&gt;&lt;P&gt;Week -&amp;gt; displayed as 1,2,3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still nee a query which kills the timestamp for me so i only get the date DD.MM.YYYY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Google Adwords: i added the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim_date as dim_date,&lt;/P&gt;&lt;P&gt;makedate(mid(dim_date, 1, 4), mid(dim_date, 5, 2), mid(dim_date, 7, 2)) as date,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this returns the date in the wished format: DD.MM.YYYY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But then wenn i try to get the pairing with the other data i get funny stuff coming out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;month(dim_date) as month,&lt;/P&gt;&lt;P&gt;week(dim_date)as week,&lt;/P&gt;&lt;P&gt;year(dim_date) as year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year -&amp;gt; strange number such as 57014&lt;/P&gt;&lt;P&gt;Month -&amp;gt;in contrary to the mysql query it returns in May, june, july...&lt;/P&gt;&lt;P&gt;Week -&amp;gt; displayed as 1,2,3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i select the date from the adwords data like 01.01.2013 it gives me as corresponding month may and some random year. See screenshot attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Mar 2013 23:50:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385355#M697073</guid>
      <dc:creator />
      <dc:date>2013-03-24T23:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385356#M697074</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 have to format Extracted Date from sources with Date() and Date#() functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. For MySql:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#(Mid(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;date_added&lt;/SPAN&gt;,1,10),'DD.MM.YYYY'),'DD.MM.YYYY') as &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;date&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;Year(Date(Date#(Mid(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;date_added&lt;/SPAN&gt;,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as year,&lt;/P&gt;&lt;P&gt;Month(Date(Date#(Mid(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;date_added&lt;/SPAN&gt;,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as month,&lt;/P&gt;&lt;P&gt;Week(Date(Date#(Mid(&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;date_added&lt;/SPAN&gt;,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as week,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. For Google Adwords:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#(dim_date,'YYYYMMDD'),'DD.MM.YYYY')&amp;nbsp; as date,&lt;/P&gt;&lt;P&gt;Year(Date(Date#(dim_date,'YYYYMMDD'),'DD.MM.YYYY'))&amp;nbsp; as year,&lt;/P&gt;&lt;P&gt;Month(Date(Date#(dim_date,'YYYYMMDD'),'DD.MM.YYYY') ) as month,&lt;/P&gt;&lt;P&gt;Week(Date(Date#(dim_date,'YYYYMMDD'),'DD.MM.YYYY')) as week&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;som&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 04:13:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385356#M697074</guid>
      <dc:creator>somenathroy</dc:creator>
      <dc:date>2013-03-25T04:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385357#M697075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the adwords part worked like a charm. With the other data i am having problems:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the query i am using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;------&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #222222; font-family: arial, sans-serif; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date_added as date_added,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #222222; font-family: arial, sans-serif; font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY') as date,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as year,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as month,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as week&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from mysql_database.orders&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;----&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i get this Script error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;SQL##f - SqlState: 37000, ErrorCode: 1064, ErrorMsg: [MySQL][ODBC 5.2(a) Driver][mysqld-5.1.66-0+squeeze1-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Year(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as year,&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;Mont' at line 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 15:41:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385357#M697075</guid>
      <dc:creator />
      <dc:date>2013-03-25T15:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385358#M697076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Chris,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot use QlikView functions in SQL, it doesn't understand this.&amp;nbsp; Use preceeding load, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date_added,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY') as date,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as year,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as month,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week(Date(Date#(Mid(date_added,1,10),'DD.MM.YYYY'),'DD.MM.YYYY')) as week&lt;BR /&gt;;&lt;BR /&gt;SELECT&lt;BR /&gt; date_added&lt;BR /&gt;from mysql_database.orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 15:48:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385358#M697076</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-25T15:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385359#M697077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, thanks alot. Maybe i have fault in my thinking. The database format in the mysql table is: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2012-05-29 11:58:55&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Michael: with your help i dont get the error but i also get no values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 16:05:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385359#M697077</guid>
      <dc:creator />
      <dc:date>2013-03-25T16:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385360#M697078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the data format is different, you have to replace this&lt;/P&gt;&lt;P&gt;Date#(Mid(date_added,1,10),'DD.MM.YYYY')&lt;/P&gt;&lt;P&gt;with&lt;/P&gt;&lt;P&gt;Date#(Mid(date_added,1,10),'YYYY-MM-DD')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 16:27:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385360#M697078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-25T16:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385361#M697079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tried that. Still doenst return any right data. Any other ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 16:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385361#M697079</guid>
      <dc:creator />
      <dc:date>2013-03-25T16:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385362#M697080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sure &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this, and tell what it returns, if anything:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date_added&lt;BR /&gt;;&lt;BR /&gt;SELECT&lt;BR /&gt; date_added&lt;BR /&gt;from mysql_database.orders;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 16:44:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385362#M697080</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-25T16:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385363#M697081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, got it working. I put your the normal format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;week(date_added) as week,&lt;/P&gt;&lt;P&gt;etc.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before the&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;date_added&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from mysql_live:orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now i have one last problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Google adwords gives me back Month as March,June etc.&lt;/P&gt;&lt;P&gt;Mysql gives me back 1,2,3 etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; thats my last question. Thanks so far for helping out!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 16:57:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385363#M697081</guid>
      <dc:creator />
      <dc:date>2013-03-25T16:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385364#M697082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That means that the date_added in mySQL is in fact a date field, no need for date#().&lt;/P&gt;&lt;P&gt;Month - can't you use simply month(date_added)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 17:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385364#M697082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-25T17:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385365#M697083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did that. with the adwords data it returns values:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan, Feb, March, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the mysql values it gives me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1,2,3,4 etc..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 17:46:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385365#M697083</guid>
      <dc:creator />
      <dc:date>2013-03-25T17:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385366#M697084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not clear what you're doing and what format you want.&amp;nbsp; This will return Jan, Feb:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;month(date_added) as Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SELECT date_added FROM from mysql_database.orders;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure where1,2,3... are coming from.&amp;nbsp; Anyway, if you have a Month field in this format, and want Jan, Feb, Mar... you can convert:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;month(makedate(2013, Month)) as Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2013 is an example, you can use any year &amp;gt;=0)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Mar 2013 17:52:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385366#M697084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-25T17:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with Dateformat and matching date formats</title>
      <link>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385367#M697085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks alot for helping out. I appreciate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 15:31:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problems-with-Dateformat-and-matching-date-formats/m-p/385367#M697085</guid>
      <dc:creator />
      <dc:date>2013-03-31T15:31:17Z</dc:date>
    </item>
  </channel>
</rss>

