<?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: Month and Year in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795101#M1041158</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD *,Month &amp;amp; '-' &amp;amp; Subfield(FY,'/',1) As&amp;nbsp; MonthYear Inline [&lt;/P&gt;&lt;P&gt;FY,Month&lt;/P&gt;&lt;P&gt;2014/15,Jan&lt;/P&gt;&lt;P&gt;2014/15,Feb ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Dec 2014 12:07:42 GMT</pubDate>
    <dc:creator>anbu1984</dc:creator>
    <dc:date>2014-12-08T12:07:42Z</dc:date>
    <item>
      <title>Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795100#M1041157</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 have a file name as such 'DetailPL_FY1415.xlsx'. The file contains two fields in particular labelled at FY and Month. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FY contains the value 2014/15 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month contains the values Jan, Feb, March etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The financial year starts in August and ends in September. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; How do I create a MonthYear field? I,e Dec-2014, Jan-2015 etc...? Can I still use the filename?&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, 08 Dec 2014 11:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795100#M1041157</guid>
      <dc:creator />
      <dc:date>2014-12-08T11:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795101#M1041158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD *,Month &amp;amp; '-' &amp;amp; Subfield(FY,'/',1) As&amp;nbsp; MonthYear Inline [&lt;/P&gt;&lt;P&gt;FY,Month&lt;/P&gt;&lt;P&gt;2014/15,Jan&lt;/P&gt;&lt;P&gt;2014/15,Feb ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 12:07:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795101#M1041158</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-12-08T12:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795102#M1041159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Month &amp;amp; '-' &amp;amp; LEFT(FY,4) AS MonthYear&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 12:12:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795102#M1041159</guid>
      <dc:creator />
      <dc:date>2014-12-08T12:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795103#M1041160</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;You can try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Month&amp;amp;'-'&amp;amp;Left(FY,4) as MonthYear;&lt;/P&gt;&lt;P&gt;Load * Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;FY,Month&lt;/P&gt;&lt;P&gt;2014/15,Sep&lt;/P&gt;&lt;P&gt;2014/15,Oct&lt;/P&gt;&lt;P&gt;2014/15,Nov&lt;/P&gt;&lt;P&gt;2014/15,Dec&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month&amp;amp;'-'&amp;amp; Year( Date(Left(FY,4),'YYYY) ) AS MonthYear;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 12:13:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795103#M1041160</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-08T12:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795104#M1041161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anbu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That works fine, but again, the issue is Aug, Sep, Oct, Nov, Dec should be 2014 and Jan, Feb, Mar till Jul need to be 2015. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I make this split?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 12:13:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795104#M1041161</guid>
      <dc:creator />
      <dc:date>2014-12-08T12:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795105#M1041162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD *,Month &amp;amp; '-' &amp;amp; If(Match(Month,'Aug','Sep','Oct','Nov','Dec'),Subfield(FY,'/',1),'20'&amp;amp;Subfield(FY,'/',2)) As&amp;nbsp; MonthYear Inline [&lt;/P&gt;&lt;P&gt;FY,Month&lt;/P&gt;&lt;P&gt;2014/15,Jan&lt;/P&gt;&lt;P&gt;2014/15,Feb&lt;/P&gt;&lt;P&gt;2014/15,Mar&lt;/P&gt;&lt;P&gt;2014/15,Apr&lt;/P&gt;&lt;P&gt;2014/15,May&lt;/P&gt;&lt;P&gt;2014/15,Jun&lt;/P&gt;&lt;P&gt;2014/15,Jul&lt;/P&gt;&lt;P&gt;2014/15,Aug&lt;/P&gt;&lt;P&gt;2014/15,Sep&lt;/P&gt;&lt;P&gt;2014/15,Oct&lt;/P&gt;&lt;P&gt;2014/15,Nov&lt;/P&gt;&lt;P&gt;2014/15,Dec&lt;/P&gt;&lt;P&gt; ];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 12:19:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795105#M1041162</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-12-08T12:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795106#M1041163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2014 12:31:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Month-and-Year/m-p/795106#M1041163</guid>
      <dc:creator />
      <dc:date>2014-12-08T12:31:13Z</dc:date>
    </item>
  </channel>
</rss>

