<?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 Month number to Month name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146295#M24886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My script currently looks like this:&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;BR /&gt;SET DateFormat='D/M/YY';&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;BR /&gt;ODBC CONNECT TO [Excel Files;DBQ=C:\...\Employee.xls];&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM `C:\...\Employee.xls`.`Employees$`;&lt;BR /&gt;&lt;BR /&gt;ODBC CONNECT TO [Excel Files;DBQ=C:\...\Sales.xls];&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM `C:\...\Sales.xls`.`Customers$`;&lt;BR /&gt;&lt;BR /&gt;SQL SELECT *, Month(OrderDate) AS Month, Year(OrderDate) AS Year&lt;BR /&gt;FROM `C:\...\Sales.xls`.`Orders$`;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where would I put the mapping code?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yiling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2009 02:43:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-06-09T02:43:26Z</dc:date>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146292#M24883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm looking for a way to convert Month numbers to their three-letter names.&lt;/P&gt;&lt;P&gt;Currently, the Month field is loaded by Month(OrderDate) where OrderDate is a Date. However, inside QV, the months show up as numbers from 1-12 and I need them to say Jan, Feb, ...&lt;/P&gt;&lt;P&gt;So far on the forums I've only seen how to convert from the Names to the numbers but not back. Is there a way to do this?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 01:22:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146292#M24883</guid>
      <dc:creator />
      <dc:date>2009-06-09T01:22:47Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146293#M24884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The basic solution is to use 'MMM' in the date function. You will need to adapt this, but here is an example:&lt;/P&gt;&lt;P&gt;Date( myField, 'MMM')&lt;/P&gt;&lt;P&gt;Or you could try something like this:&lt;/P&gt;&lt;P&gt;Date( myField &amp;amp; '/1/2001', 'MMM')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 01:32:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146293#M24884</guid>
      <dc:creator />
      <dc:date>2009-06-09T01:32:58Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146294#M24885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the months show up as numbers from 1 to 12, you can use mapping:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;MonthMap:&lt;BR /&gt;MAPPING LOAD * INLINE [&lt;BR /&gt; Num, Month,&lt;BR /&gt; 1, Jan&lt;BR /&gt; 2, Feb&lt;BR /&gt; ...&lt;BR /&gt; 12, Dec];&lt;BR /&gt;...&lt;BR /&gt;LOAD&lt;BR /&gt; dual(applymap('MonthMap', Num), Num) as Month&lt;BR /&gt;...&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Dual optional but helpful to sort properly. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 01:40:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146294#M24885</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-09T01:40:04Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146295#M24886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My script currently looks like this:&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;BR /&gt;SET DateFormat='D/M/YY';&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;BR /&gt;ODBC CONNECT TO [Excel Files;DBQ=C:\...\Employee.xls];&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM `C:\...\Employee.xls`.`Employees$`;&lt;BR /&gt;&lt;BR /&gt;ODBC CONNECT TO [Excel Files;DBQ=C:\...\Sales.xls];&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM `C:\...\Sales.xls`.`Customers$`;&lt;BR /&gt;&lt;BR /&gt;SQL SELECT *, Month(OrderDate) AS Month, Year(OrderDate) AS Year&lt;BR /&gt;FROM `C:\...\Sales.xls`.`Orders$`;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where would I put the mapping code?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yiling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 02:43:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146295#M24886</guid>
      <dc:creator />
      <dc:date>2009-06-09T02:43:26Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146296#M24887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yiling,&lt;BR /&gt;It could be done this way:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;...&lt;BR /&gt;ODBC CONNECT TO [Excel Files;DBQ=C:\...\Sales.xls];&lt;BR /&gt;SQL SELECT *&lt;BR /&gt;FROM `C:\...\Sales.xls`.`Customers$`;&lt;BR /&gt;&lt;STRONG&gt;MonthMap:&lt;BR /&gt;MAPPING LOAD * INLINE [&lt;BR /&gt; Num, Month&lt;BR /&gt; 1, Jan&lt;BR /&gt; 2, Feb&lt;BR /&gt; ...&lt;BR /&gt; 12, Dec];&lt;/STRONG&gt;&lt;BR /&gt;SQL SELECT *, Month(OrderDate) AS Month, Year(OrderDate) AS Year,&lt;BR /&gt; &lt;STRONG&gt;dual(applymap('MonthMap', Num), Num) as MonthName&lt;BR /&gt;&lt;/STRONG&gt;FROM `C:\...\Sales.xls`.`Orders$`;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Asuming that the Month number is the Num field. &lt;BR /&gt;But you have Month already... I don't understand now what the problem is. &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 03:43:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146296#M24887</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-09T03:43:15Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146297#M24888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically in my Sales.xls spreadsheet, I have a Table called Orders which has field OrderDate which is all dates in the format MM/DD/YYYY.&lt;/P&gt;&lt;P&gt;Since I needed Month and Year Fields, I used Month(OrderDate) to get the month values from OrderDate and stored them into the newly made Month field. However, this field only has the numbers 1-12 which match up to their respective months, but I would like the list table with Months to show the month names so that users can click on "Jan" instead of "1" to see the sales in January.&lt;/P&gt;&lt;P&gt;I'll try your method now.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yiling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2009 03:48:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146297#M24888</guid>
      <dc:creator />
      <dc:date>2009-06-09T03:48:49Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146298#M24889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That didn't work. My dates are in the Orders table in the Sales.xls spreadsheet. There's no built in function that converts the Month numbers to Month names?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 01:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146298#M24889</guid>
      <dc:creator />
      <dc:date>2009-06-10T01:13:38Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146299#M24890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, there is. Please see my previous post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 01:21:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146299#M24890</guid>
      <dc:creator />
      <dc:date>2009-06-10T01:21:34Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146300#M24891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where would I put that?&lt;/P&gt;&lt;P&gt;I did it as an expression within QV and I got 1 box that says Dec and the other 11 boxes all say Jan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 01:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146300#M24891</guid>
      <dc:creator />
      <dc:date>2009-06-10T01:28:46Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146301#M24892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've attached a working example that looks like this:&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/6724.Image6.JPG"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/6724.Image6.JPG" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 01:36:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146301#M24892</guid>
      <dc:creator />
      <dc:date>2009-06-10T01:36:02Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146302#M24893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yiling,&lt;BR /&gt;Now I understand even less. You're saying that you "used Month(OrderDate) to get the month values from OrderDate and stored them into the newly made Month field". But in this case your Month field is dual, that is the number and the text at the same time. The only thing you need to do is to check what is the Number properties of your list box.&lt;BR /&gt;See the atched Calendar example. There are two list boxes named Month on the right. They are the same Month field, th difference is only in Number properties.&lt;BR /&gt;If it doesn't help, could you please post your app (ot a part of it) to see waht's going on there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 01:40:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146302#M24893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-10T01:40:15Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146303#M24894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using the "PICK" function.&lt;/P&gt;&lt;P&gt;PICK(month(OrderDate),'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')&lt;/P&gt;&lt;P&gt;The "PICK" function will convert 1 to Jan., 2 to Feb, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 02:29:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146303#M24894</guid>
      <dc:creator />
      <dc:date>2009-06-10T02:29:32Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146304#M24895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;BR /&gt;Pick is fine, but isn't it simpler to use just &lt;STRONG&gt;month(OrderDate)?&lt;/STRONG&gt; Or at least &lt;STRONG&gt;text(month(OrderDate))...&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 02:44:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146304#M24895</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-10T02:44:46Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146305#M24896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that might be part of the problem. My Month field isn't dual. In your example, the Month ListBox displays the names by default. It only shows the numbers when you click Override Document Settings under the Number properties and click on Integer. However, mine only shows the number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 02:53:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146305#M24896</guid>
      <dc:creator />
      <dc:date>2009-06-10T02:53:00Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146306#M24897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think there is quite a difference between the Month() function in Qlikview and the Month() function in SQL. If I directly use the function Month(OrderDate) as an expression and set that as the dimension, Months show up with names and can be changed to numbers. However, I think the Month() when I did Select *, Month(OrderDate) as Month in my load script only takes numbers?&lt;/P&gt;&lt;P&gt;I really don't know SQL so I may be wrong but this is just what I'm observing happen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 03:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146306#M24897</guid>
      <dc:creator />
      <dc:date>2009-06-10T03:03:21Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146307#M24898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eugene,&lt;/P&gt;&lt;P&gt;I think my problem is most similiar to your example. Your Month field as shown in your tablebox is also numbers. I don't need any chart or any object to display the Month names based on the numbers. I need the numbers to actually be the monthnames.&lt;/P&gt;&lt;P&gt;So basically, if you could make your table box with the Month field show Jan, Feb, Mar, etc, then it would solve my problem too.&lt;/P&gt;&lt;P&gt;Yiling&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 03:12:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146307#M24898</guid>
      <dc:creator />
      <dc:date>2009-06-10T03:12:24Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146308#M24899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that you're trying to use QV functions in SQL. It doesn't wotk this way. (Well, i should've noticed in your example). You can use applymap, or pick, or any other QV function on the QV LOAD level. Even if you use the same month() as now but on the LOAD, it will work just fine.&lt;BR /&gt;&lt;STRONG&gt;LOAD&lt;BR /&gt; *,&lt;BR /&gt;month(OrderDate) as Month;&lt;/STRONG&gt;&lt;BR /&gt;SQL SELECT&lt;BR /&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 03:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146308#M24899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-10T03:28:36Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146309#M24900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow. Such a simple fix. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 03:43:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146309#M24900</guid>
      <dc:creator />
      <dc:date>2009-06-10T03:43:46Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146310#M24901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We should've resolved it long ago. I simply didn't notice that the month() function was in SQL... &lt;IMG alt="Tongue Tied" src="http://community.qlik.com/emoticons/emotion-7.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jun 2009 07:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146310#M24901</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-10T07:16:55Z</dc:date>
    </item>
    <item>
      <title>Month number to Month name</title>
      <link>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146311#M24902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried: PICK(month(OrderDate),'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')&lt;/P&gt;&lt;P&gt;The problem is if the OrderDate isn't actually a date but a number (1 = Jan, 2 = Feb etc).&lt;/P&gt;&lt;P&gt;So, if you remove the month(OrderDate) it works OK.&lt;/P&gt;&lt;P&gt;I used: PICK(OrderDate,'Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')&lt;/P&gt;&lt;P&gt;In order to sort this, if you are using a List Box, you need to sort by an expression equal to the numeric number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 13:08:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-number-to-Month-name/m-p/146311#M24902</guid>
      <dc:creator>johnpaul</dc:creator>
      <dc:date>2009-06-17T13:08:17Z</dc:date>
    </item>
  </channel>
</rss>

