<?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 Get simple month text (MMM) from date field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141457#M21119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok almost there! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So "text(date(Datefield,'MMM') as Month" did give me the unique MMM values I wanted, but now I need to be able to sort them by month not alphabetically. Is there an easy way to convert this to a dual value or something?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2009 02:21:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-04-16T02:21:25Z</dc:date>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141453#M21115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys. I have a date field that I'm trying to create a date dimension for. I want to have a month dimension that's just the first 3 letters of the month based on the full date. I tried using the Month function, and it only returns an integer, not the text. I also tried using Date(DateField, 'MMM'), but that created a ton of duplicate entries, where all I want is a simple 12 month list so I can pivot by month. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 01:17:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141453#M21115</guid>
      <dc:creator />
      <dc:date>2009-04-16T01:17:29Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141454#M21116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason you see duplicate numbers for one month is because you are just trying to foce it to display in MMM mode, but in the back end, it still recognizes as separate dates. You need to do something like...&lt;/P&gt;&lt;P&gt;Month(DateField) as Month&lt;/P&gt;&lt;P&gt;and make sure that your MonthNames variable set within the scripts contains the three letter acronyms. e.g., &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;SET&lt;/P&gt;MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec'; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;or try...&lt;/P&gt;&lt;P&gt;Date(Monthstart(Datefield), 'MMM') as Month&lt;/P&gt;&lt;P&gt;By doing this, you are forcing to get a single value for all dates within a month, and converting it to be displayed in a three letter month acronym.&lt;/P&gt;&lt;P&gt;I hope it works.&lt;BR /&gt;Shima&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 01:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141454#M21116</guid>
      <dc:creator>sna</dc:creator>
      <dc:date>2009-04-16T01:23:39Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141455#M21117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply Shima, but neither solution seems to work. I have the MonthNames variable set as you said, but Month(DateField) as Month still returns 1-12.&lt;/P&gt;&lt;P&gt;Also, since the date field spans multiple years, MonthStart will return the beginning of the month, but on different years, so we still have the same issue with multiple values for each month.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 01:55:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141455#M21117</guid>
      <dc:creator />
      <dc:date>2009-04-16T01:55:00Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141456#M21118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you get the first 3 letters of the month when you do Date(Datefield,'MMM')?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try doing text(date(Datefield,'MMM') as Month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 02:05:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141456#M21118</guid>
      <dc:creator>danielrozental</dc:creator>
      <dc:date>2009-04-16T02:05:57Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141457#M21119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok almost there! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So "text(date(Datefield,'MMM') as Month" did give me the unique MMM values I wanted, but now I need to be able to sort them by month not alphabetically. Is there an easy way to convert this to a dual value or something?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 02:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141457#M21119</guid>
      <dc:creator />
      <dc:date>2009-04-16T02:21:25Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141458#M21120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;DUAL(&lt;/P&gt;&lt;P&gt;text(date(DateField,'MMM')),&lt;/P&gt;&lt;P&gt;num(month(DateField))) AS Month,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then sort Month as number&lt;/P&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 02:32:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141458#M21120</guid>
      <dc:creator>danielrozental</dc:creator>
      <dc:date>2009-04-16T02:32:04Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141459#M21121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;text(date(DateField,'MMM')) AS Month&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;in the script and then use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Max(DateField)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;in an ascending expression sort on the month field above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 02:39:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141459#M21121</guid>
      <dc:creator />
      <dc:date>2009-04-16T02:39:33Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141460#M21122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;text(date(Datefield,'MMM') as Month&lt;/P&gt;&lt;P&gt;works for me when I select Numeric for the chart sort. Have you selected Numeric sort?&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 02:49:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141460#M21122</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-04-16T02:49:23Z</dc:date>
    </item>
    <item>
      <title>Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141461#M21123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I tried it again using "text(date(Datefield,'MMM') as Month" and this time it sorted correctly. Everything looks good! Thanks guys!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 03:17:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/141461#M21123</guid>
      <dc:creator />
      <dc:date>2009-04-16T03:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Get simple month text (MMM) from date field</title>
      <link>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/1883308#M1216936</link>
      <description>&lt;P&gt;Okay, I tried to use "text (history box, mmm") monthly "again", this time sorted correctly. Everything looks good. Thank you, my friend&lt;/P&gt;
&lt;P&gt;&lt;A href="https://beetvapp.me/" target="_self"&gt;&lt;FONT size="1 2 3 4 5 6 7" color="#FFFFFF"&gt;BeeTV Apk&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://moviehd.onl/" target="_self"&gt;&lt;FONT size="1 2 3 4 5 6 7" color="#FFFFFF"&gt;Movie Hd&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://megaboxhdapk.com/" target="_self"&gt;&lt;FONT size="1 2 3 4 5 6 7" color="#FFFFFF"&gt;MegaBox&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://cinemahd.onl/" target="_self"&gt;&lt;FONT size="1 2 3 4 5 6 7" color="#FFFFFF"&gt;Cinema HD&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 11:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-simple-month-text-MMM-from-date-field/m-p/1883308#M1216936</guid>
      <dc:creator>johnreena</dc:creator>
      <dc:date>2022-01-20T11:38:19Z</dc:date>
    </item>
  </channel>
</rss>

