<?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 Date Substringing in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224752#M77122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please forgive my lack of training, but how do you do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Apr 2011 17:48:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-04-20T17:48:00Z</dc:date>
    <item>
      <title>Date Substringing</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224748#M77118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to substring out Month and Year from a date field. The field format is DD/MM/YYYY&lt;/P&gt;&lt;P&gt;I am currently Using :&lt;/P&gt;&lt;P&gt;Month("RFPForce__Due_Date__c") AS RFPForce_DueDate_MONTH,&lt;BR /&gt; Year("RFPForce__Due_Date__c") AS RFPForce_DueDate_YEAR,&lt;/P&gt;&lt;P&gt;The Problem I have is the Month substring returns a numeric value for the month (1 for January).. Is there a way to formulariclly have the month represented as either the Month Name or a month abbreviation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 17:38:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224748#M77118</guid>
      <dc:creator />
      <dc:date>2011-04-20T17:38:31Z</dc:date>
    </item>
    <item>
      <title>Date Substringing</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224749#M77119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just change the filed format to default on your sheet and it should show you the month names correctly. It seems you have the field formatted as number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 17:42:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224749#M77119</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2011-04-20T17:42:34Z</dc:date>
    </item>
    <item>
      <title>Date Substringing</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224750#M77120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;Text( date(RFPForce__Due_Date__c,'MMM') )&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;( date(RFPForce__Due_Date__c,'MMM') )&lt;/P&gt;&lt;P&gt;or Text( date(RFPForce__Due_Date__c,'MMMM') )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 17:43:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224750#M77120</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-04-20T17:43:30Z</dc:date>
    </item>
    <item>
      <title>Date Substringing</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224751#M77121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, you can modify this example:&lt;/P&gt;&lt;P&gt;MONTHS_NAME:&lt;BR /&gt;Mapping Load * Inline [&lt;BR /&gt;Month, MonthName&lt;BR /&gt;1,'Jan'&lt;BR /&gt;2,'Fev'&lt;BR /&gt;3,'Mar'&lt;BR /&gt;4,'Abr'&lt;BR /&gt;5,'Mai'&lt;BR /&gt;6,'Jun'&lt;BR /&gt;7,'Jul'&lt;BR /&gt;8,'Ago'&lt;BR /&gt;9,'Set'&lt;BR /&gt;10,'Out'&lt;BR /&gt;11,'Nov'&lt;BR /&gt;12,'Dez'];&lt;/P&gt;&lt;P&gt;TEST:&lt;BR /&gt;Load&lt;BR /&gt; applymap('MONTHS_NAME',Month(RFPForce__Due_Date__c)) as MONTH_NAME,&lt;BR /&gt; Day(RFPForce__Due_Date__c) as Day&lt;BR /&gt;RESIDENT DATES&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 17:46:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224751#M77121</guid>
      <dc:creator />
      <dc:date>2011-04-20T17:46:01Z</dc:date>
    </item>
    <item>
      <title>Date Substringing</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224752#M77122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please forgive my lack of training, but how do you do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 17:48:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224752#M77122</guid>
      <dc:creator />
      <dc:date>2011-04-20T17:48:00Z</dc:date>
    </item>
    <item>
      <title>Date Substringing</title>
      <link>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224753#M77123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;These are the default settings I am using.....what needs to change?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;BR /&gt;SET DecimalSep='.';&lt;BR /&gt;SET MoneyThousandSep=',';&lt;BR /&gt;SET MoneyDecimalSep='.';&lt;BR /&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;BR /&gt;SET TimeFormat='h:mm:ss TT';&lt;BR /&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;BR /&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;BR /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2011 18:01:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-Substringing/m-p/224753#M77123</guid>
      <dc:creator />
      <dc:date>2011-04-20T18:01:42Z</dc:date>
    </item>
  </channel>
</rss>

