<?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: Date in Month in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559163#M692697</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;If you want to just convert from numeric to text representation you can do this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13757127576222666" jivemacro_uid="_13757127576222666"&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (...),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(ExcelMonth,'MM'),'MMM') as MonthDescription&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExcelFile;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cesar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Aug 2013 14:31:52 GMT</pubDate>
    <dc:creator>cesaraccardi</dc:creator>
    <dc:date>2013-08-05T14:31:52Z</dc:date>
    <item>
      <title>Date in Month</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559159#M692692</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;&lt;/P&gt;&lt;P&gt;I have an excel file with all dates of the year. I dont have the month inside the excel. Is it possible to get the month in QV that i can select them by month with july and not with "7"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 13:57:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559159#M692692</guid>
      <dc:creator />
      <dc:date>2013-08-05T13:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Date in Month</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559160#M692694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;Yes its possible&amp;nbsp; create an inline table and join with the month of the excel file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Calendar]:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month_ID, Month, Quarter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, Jan,Q1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, Feb, Q1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, Mar, Q1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, Apr, Q2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, May, Q2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6, Jun, Q2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7, Jul, Q3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8, Aug, Q3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9, Sep, Q3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10, Oct, Q4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11, Nov, Q4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12, Dec, Q4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Excel_Files:&lt;/P&gt;&lt;P&gt;JOIN([Calendar])&lt;/P&gt;&lt;P&gt;load&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date)&amp;nbsp;&amp;nbsp; AS Month,&lt;/P&gt;&lt;P&gt; from excelfile..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u r joing with the month field to&amp;nbsp; the inline table ,&lt;/P&gt;&lt;P&gt;so by default whaterver the month number u get selected&amp;nbsp; respective month name is shown..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ur still unclear about this ,&lt;/P&gt;&lt;P&gt;post a sample file ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 14:08:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559160#M692694</guid>
      <dc:creator>shree909</dc:creator>
      <dc:date>2013-08-05T14:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Date in Month</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559161#M692695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe you meant month is there but in numeric format, if it is so, you can read the excel date in qlikview like the following (to get the month name):&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Yourdatefield, 'DD-MMM-YYYY') as QVDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Yourdatefield,'MMM') as Month&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From&amp;nbsp; &amp;lt;Excel path&amp;gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 14:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559161#M692695</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-05T14:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Date in Month</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559162#M692696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The exemple file is just some dates... and the values are random tipped in....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 14:24:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559162#M692696</guid>
      <dc:creator />
      <dc:date>2013-08-05T14:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Date in Month</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559163#M692697</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;If you want to just convert from numeric to text representation you can do this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13757127576222666" jivemacro_uid="_13757127576222666"&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (...),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(ExcelMonth,'MM'),'MMM') as MonthDescription&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExcelFile;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cesar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Aug 2013 14:31:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-Month/m-p/559163#M692697</guid>
      <dc:creator>cesaraccardi</dc:creator>
      <dc:date>2013-08-05T14:31:52Z</dc:date>
    </item>
  </channel>
</rss>

