<?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 FORMATING DATE - HELP in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278899#M1203076</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;This is the format of the date field = 22/09/2010&lt;/P&gt;&lt;P&gt;Im new to script writing on qlikview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I edit this query so it returns the abbreivation name of the month rather than number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SQL SELECT `se_AP`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_ID`,&lt;BR /&gt; `se_IMPORTID`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; Year(se_DATEIMPORT)as TYEAR,&lt;BR /&gt; Left(MonthName(se_DATEIMPORT),3) as TMONTH&lt;BR /&gt;&lt;BR /&gt;FROM `dbo_SwapExposure`;&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>Thu, 23 Sep 2010 08:01:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-09-23T08:01:12Z</dc:date>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278895#M1203072</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 new to qlikview, having used this over a few days I am getting slightly frustrating with the script language. I am trying to format the month to return a Text rather than a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With my script below, it returns a number, not text. Can someone help????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SQL SELECT `se_AP`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_ID`,&lt;BR /&gt; `se_IMPORTID`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; Year(se_DATEIMPORT)as TYEAR,&lt;BR /&gt; Month (se_DATEIMPORT)as TMONTH&lt;BR /&gt;&lt;BR /&gt;FROM `dbo_SwapExposure`;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Sep 2010 17:24:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278895#M1203072</guid>
      <dc:creator />
      <dc:date>2010-09-22T17:24:25Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278896#M1203073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Month() returns the numeric month of the date. MonthName() should return the month abbreviation plus the year.&lt;/P&gt;&lt;P&gt;Left(MonthName(se_DATEIMPORT), 3) as TMONTH should give you just the month abbreviation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Sep 2010 17:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278896#M1203073</guid>
      <dc:creator />
      <dc:date>2010-09-22T17:27:03Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278897#M1203074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for getting back to me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left(MonthName(se_DATEIMPORT),3) as TMONTH&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I entered this in and I get an error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Sep 2010 17:35:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278897#M1203074</guid>
      <dc:creator />
      <dc:date>2010-09-22T17:35:19Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278898#M1203075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the error? What is the format of se_DATEIMPORT?&lt;/P&gt;&lt;P&gt;Try entering this:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Left(MonthName(Now()), 3) As TodayMonth&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I did that in a test and it worked. It could be that it is not recognizing se_DATEIMPORT as a Date. You may have to use Date() or Date#() to convert it first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Sep 2010 17:39:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278898#M1203075</guid>
      <dc:creator />
      <dc:date>2010-09-22T17:39:36Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278899#M1203076</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;This is the format of the date field = 22/09/2010&lt;/P&gt;&lt;P&gt;Im new to script writing on qlikview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I edit this query so it returns the abbreivation name of the month rather than number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SQL SELECT `se_AP`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_ID`,&lt;BR /&gt; `se_IMPORTID`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; Year(se_DATEIMPORT)as TYEAR,&lt;BR /&gt; Left(MonthName(se_DATEIMPORT),3) as TMONTH&lt;BR /&gt;&lt;BR /&gt;FROM `dbo_SwapExposure`;&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>Thu, 23 Sep 2010 08:01:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278899#M1203076</guid>
      <dc:creator />
      <dc:date>2010-09-23T08:01:12Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278900#M1203077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use following script :&lt;/P&gt;&lt;P&gt;Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH&lt;/P&gt;&lt;P&gt;If this doesn't work, remove # after Date in above script.&lt;/P&gt;&lt;P&gt;Still if it gives error, Plz share sample data if you can.&lt;/P&gt;&lt;P&gt;Happy Thoughts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 08:42:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278900#M1203077</guid>
      <dc:creator />
      <dc:date>2010-09-23T08:42:47Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278901#M1203078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Still no luck. I must be doing something wrong. This is what I am trying to run now&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;SQL SELECT `se_AP`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_ID`,&lt;BR /&gt; `se_IMPORTID`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; Year(se_DATEIMPORT)as TYEAR,&lt;BR /&gt; Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH&lt;BR /&gt;&lt;BR /&gt;FROM `dbo_SwapExposure`;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:07:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278901#M1203078</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:07:14Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278902#M1203079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is my error:&lt;/P&gt;&lt;P&gt;SQL Error:[Microsoft][ODBC Microsoft Access Driver] Syntax error in date in query expression 'Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3)'.&lt;BR /&gt;SQL Scriptline:&lt;BR /&gt;SQL State:37000&lt;BR /&gt;SQL SELECT `se_AP`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_ID`,&lt;BR /&gt; `se_IMPORTID`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; Year(se_DATEIMPORT)as TYEAR,&lt;BR /&gt; Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH&lt;BR /&gt;&lt;BR /&gt;FROM `dbo_SwapExposure`&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:08:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278902#M1203079</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:08:21Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278903#M1203080</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;MonthName is a Qlikview function, not SQL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to load first in a table T1 from SQL query and then you can use T2 : LOad *, left(monthname(....) as Tmonth resident T1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can make it in one load using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *, left(monthname(....) as Tmonth;&lt;/P&gt;&lt;P&gt;SQL ....FROM dbo_SwapExposure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;christian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:12:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278903#M1203080</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:12:52Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278904#M1203081</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;This is what I wrote and tried to load butit didn't work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO [MS Access Database;DBQ=G:\ETP_TRADING AND OPERATIONS\Daily internal reports\Reporting DB\IM Access Database\ASSENAGON.mdb];&lt;BR /&gt;LOAD `se_ID`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_AP`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH,&lt;BR /&gt; `se_IMPORTID`;&lt;BR /&gt;&lt;BR /&gt;SQL SELECT `se_ID`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_AP`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_IMPORTID`&lt;BR /&gt; Year(TMONTH)as YEAR,&lt;BR /&gt; MONTH(TMONTH)as REPORTING_MONTH&lt;BR /&gt;FROM `dbo_SwapExposure`;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278904#M1203081</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:24:21Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278905#M1203082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you possiblily show me how to set up the script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:25:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278905#M1203082</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:25:49Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278906#M1203083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For me it looks like TMONTH is not a field from Database but a result of a Qlikview function&lt;/P&gt;&lt;P&gt;so try this&lt;/P&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;SQL SELECT `se_ID`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_AP`,&lt;BR /&gt; `se_SwapNotional`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_IMPORTID`&lt;BR /&gt;FROM dbo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH,&lt;BR /&gt; year(se_DATEIMPORT) as Tyear&lt;/P&gt;&lt;P&gt;resident T1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278906#M1203083</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:32:39Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278907#M1203084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok gave this a try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;SQL SELECT `se_AP`,&lt;BR /&gt; `se_DATEIMPORT`,&lt;BR /&gt; `se_FUND`,&lt;BR /&gt; `se_FundNAV`,&lt;BR /&gt; `se_ID`,&lt;BR /&gt; `se_IMPORTID`,&lt;BR /&gt; `se_SwapMTM`,&lt;BR /&gt; `se_SwapMTMFundNAVPer`,&lt;BR /&gt; `se_SwapMTMNotionalPer`,&lt;BR /&gt; `se_SwapNotional`&lt;BR /&gt;FROM `dbo_SwapExposure`;&lt;BR /&gt;&lt;BR /&gt;Table2:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;*,&lt;BR /&gt; Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH,&lt;BR /&gt; year(se_DATEIMPORT) as Tyear&lt;BR /&gt;&lt;BR /&gt; Resident table1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However an error has come up saying&lt;/P&gt;&lt;P&gt;Table not found&lt;BR /&gt;Table2:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;*,&lt;BR /&gt; Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH,&lt;BR /&gt; year(se_DATEIMPORT) as Tyear&lt;BR /&gt;&lt;BR /&gt; Resident table1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:40:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278907#M1203084</guid>
      <dc:creator />
      <dc:date>2010-09-23T10:40:15Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278908#M1203085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The table names in Qlikview aere case sensitive.&lt;/P&gt;&lt;P&gt;Change the line saying &lt;B&gt;Resident table1&lt;/B&gt; to &lt;B&gt;Resident Table1&lt;BR /&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 10:56:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278908#M1203085</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2010-09-23T10:56:15Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278909#M1203086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok... it has successfully loaded however, the TMONTH field is blank now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 11:02:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278909#M1203086</guid>
      <dc:creator />
      <dc:date>2010-09-23T11:02:35Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278910#M1203087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can someone help? Now I'm left with the new field being left blank.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure what else I can do&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278910#M1203087</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:15:52Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278911#M1203088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try simplifying the field just to get some data.&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LOAD&lt;BR /&gt;*,&lt;BR /&gt; Left(Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')),3) as TMONTH,&lt;BR /&gt; Monthname(Date#(se_DATEIMPORT,'DD-MMM-YY')) as TMONTH1,&lt;BR /&gt; Date#(se_DATEIMPORT,'DD-MMM-YY') as TMONTH2,&lt;BR /&gt; se_DATEIMPORT as TMONTH3,&lt;BR /&gt; year(se_DATEIMPORT) as Tyear&lt;BR /&gt;&lt;BR /&gt; Resident Table1&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Do any of those return data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:29:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278911#M1203088</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:29:34Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278912#M1203089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ! omg it works now....&lt;/P&gt;&lt;P&gt;and now i got another problem....&lt;/P&gt;&lt;P&gt;Basically it's a similar problem but I think my SQL is inefficient because it keeps crashing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to concatenate two tables then change the date format because it's returning numbers. But the problem is..... the query keeps crashing so I think what I have scripted is incorrect...&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;MasterTurnover:&lt;BR /&gt;SQL SELECT "msamk_id",&lt;BR /&gt; "msamk_ticker" as Key_Turnoverstatic,&lt;BR /&gt; "msamk_isin",&lt;BR /&gt; "msamk_dateimported",&lt;BR /&gt; "msamk_startdate" as TURNOVER_DATE,&lt;BR /&gt; "msamk_enddate",&lt;BR /&gt; "msamk_broker",&lt;BR /&gt; "msamk_currency",&lt;BR /&gt; "msamk_srcname",&lt;BR /&gt; "msamk_markitname",&lt;BR /&gt; "msamk_turnoverbroker",&lt;BR /&gt; "msamk_turnovertotal",&lt;BR /&gt; "msamk_brokerpercent",&lt;BR /&gt; "msamk_brokerrank",&lt;BR /&gt; "msamk_1st",&lt;BR /&gt; "msamk_2nd",&lt;BR /&gt; "msamk_3rd",&lt;BR /&gt; "SSMA_TimeStamp"&lt;BR /&gt;FROM msamarkit.dbo.msamarkit;&lt;BR /&gt;&lt;BR /&gt;CONCATENATE ("MasterTurnover")&lt;BR /&gt;&lt;BR /&gt;Turnoverbloomberg:&lt;BR /&gt;SQL SELECT "mastproav_id",&lt;BR /&gt; BBTicker as Key_Turnoverstatic,&lt;BR /&gt; "FUND_TOTAL_ASSETS",&lt;BR /&gt; "FUND_TOTAL_ASSETS_CRNCY",&lt;BR /&gt; "FUND_TOTAL_ASSETS_EUR",&lt;BR /&gt; "EQY_TURNOVER",&lt;BR /&gt; CRNCY,&lt;BR /&gt; "EQY_TURNOVER_EUR",&lt;BR /&gt; "PX_LAST",&lt;BR /&gt; "mastproav_Impid",&lt;BR /&gt; "mastproav_date" as TURNOVER_DATE,&lt;BR /&gt; "FUND_TOTAL_ASSETS_DT",&lt;BR /&gt; "FUND_NET_ASSET_VAL",&lt;BR /&gt; "NAV_CRNCY",&lt;BR /&gt; "FUND_NET_ASSET_VAL_EUR",&lt;BR /&gt; "FUND_NAV_DT",&lt;BR /&gt; "EQY_SH_OUT"&lt;BR /&gt;FROM AUM.dbo.masterprodaumvol;&lt;BR /&gt;&lt;BR /&gt;Table1:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;*,&lt;BR /&gt; Left(Monthname(Date(TURNOVER_DATE,'DD/MM/YYYY')),3) as TMONTH,&lt;BR /&gt; year(TURNOVER_DATE) as Tyear&lt;/P&gt;&lt;P&gt;Resident MasterTurnover&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 17:55:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278912#M1203089</guid>
      <dc:creator />
      <dc:date>2010-09-23T17:55:13Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278913#M1203090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatanate is onyl really for tables which have the same fields (ala "union all"), i have a feeling you actually want to join the tables on the Key_Turnoverstatic and TURNOVER_DATE fields. Try:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MasterTurnover:&lt;BR /&gt;SQL SELECT "msamk_id",&lt;BR /&gt; "msamk_ticker" as Key_Turnoverstatic,&lt;BR /&gt; "msamk_isin",&lt;BR /&gt; "msamk_dateimported",&lt;BR /&gt; "msamk_startdate" as TURNOVER_DATE,&lt;BR /&gt; "msamk_enddate",&lt;BR /&gt; "msamk_broker",&lt;BR /&gt; "msamk_currency",&lt;BR /&gt; "msamk_srcname",&lt;BR /&gt; "msamk_markitname",&lt;BR /&gt; "msamk_turnoverbroker",&lt;BR /&gt; "msamk_turnovertotal",&lt;BR /&gt; "msamk_brokerpercent",&lt;BR /&gt; "msamk_brokerrank",&lt;BR /&gt; "msamk_1st",&lt;BR /&gt; "msamk_2nd",&lt;BR /&gt; "msamk_3rd",&lt;BR /&gt; "SSMA_TimeStamp"&lt;BR /&gt;FROM msamarkit.dbo.msamarkit;&lt;BR /&gt;&lt;BR /&gt;left join (MasterTurnover)&lt;BR /&gt;&lt;BR /&gt;SQL SELECT "mastproav_id",&lt;BR /&gt; BBTicker as Key_Turnoverstatic,&lt;BR /&gt; "FUND_TOTAL_ASSETS",&lt;BR /&gt; "FUND_TOTAL_ASSETS_CRNCY",&lt;BR /&gt; "FUND_TOTAL_ASSETS_EUR",&lt;BR /&gt; "EQY_TURNOVER",&lt;BR /&gt; CRNCY,&lt;BR /&gt; "EQY_TURNOVER_EUR",&lt;BR /&gt; "PX_LAST",&lt;BR /&gt; "mastproav_Impid",&lt;BR /&gt; "mastproav_date" as TURNOVER_DATE,&lt;BR /&gt; "FUND_TOTAL_ASSETS_DT",&lt;BR /&gt; "FUND_NET_ASSET_VAL",&lt;BR /&gt; "NAV_CRNCY",&lt;BR /&gt; "FUND_NET_ASSET_VAL_EUR",&lt;BR /&gt; "FUND_NAV_DT",&lt;BR /&gt; "EQY_SH_OUT"&lt;BR /&gt;FROM AUM.dbo.masterprodaumvol;&lt;BR /&gt;&lt;BR /&gt;left join (MasterTurnover)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;LOAD&lt;BR /&gt; Left(Monthname(Date(TURNOVER_DATE,'DD/MM/YYYY')),3) as TMONTH,&lt;BR /&gt; year(TURNOVER_DATE) as Tyear&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident MasterTurnover&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 18:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278913#M1203090</guid>
      <dc:creator />
      <dc:date>2010-09-23T18:14:26Z</dc:date>
    </item>
    <item>
      <title>FORMATING DATE - HELP</title>
      <link>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278914#M1203091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if this makes a difference, but I know I did exactly what you're trying to do now before:&lt;/P&gt;&lt;P&gt;for the headers I have&lt;/P&gt;&lt;P&gt;SET DateFormat='M/D/YYYY';&lt;BR /&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;BR /&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see you are using&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe change&lt;/P&gt;&lt;P&gt;SET DateFormat='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then for your table load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;se_DATEIMPORT, month(se_DATEIMPORT) as MDateImport,&lt;/P&gt;&lt;P&gt;Resident&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 18:38:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/FORMATING-DATE-HELP/m-p/278914#M1203091</guid>
      <dc:creator />
      <dc:date>2010-09-23T18:38:11Z</dc:date>
    </item>
  </channel>
</rss>

