<?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: Based on month concatenate month + string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970894#M953856</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, thanks work perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2015 01:04:40 GMT</pubDate>
    <dc:creator>nicholas5141</dc:creator>
    <dc:date>2015-11-25T01:04:40Z</dc:date>
    <item>
      <title>Based on month concatenate month + string</title>
      <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970889#M953851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently I need help on expression on pivot table to based on month to determine it's year end / mid of year and concatenate with year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: 5/1/13&amp;nbsp; show in Mid Year 2013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11/1/13&amp;nbsp; show in Year End 2014&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your kindly assists are appreciated thanks. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 10:25:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970889#M953851</guid>
      <dc:creator>nicholas5141</dc:creator>
      <dc:date>2015-11-24T10:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Based on month concatenate month + string</title>
      <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970890#M953852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(Ceil(Month(Date)/6) = 1, 'Mid Year ', 'Year End ') &amp;amp; Year(Date)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 11:19:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970890#M953852</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-24T11:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Based on month concatenate month + string</title>
      <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970891#M953853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to create an expression or a calculated dimension?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume latter and I think it would be best to create an additional field in the data model, something like (assuming september being the threshold&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; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If( Month(Date) &amp;lt; 9,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual( 'Mid Year ' &amp;amp; Year(Date), Year(Date)*10 +1),&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual( 'End Year ' &amp;amp; Year(Date), Year(Date)*10 +2) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ) AS Season,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;FROM ...;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 11:20:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970891#M953853</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-11-24T11:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Based on month concatenate month + string</title>
      <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970892#M953854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(Month(Date) &amp;gt; 6, 'Year End ',&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Mid Year '&lt;/STRONG&gt;) &amp;amp; Year(Date)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 11:23:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970892#M953854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-24T11:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Based on month concatenate month + string</title>
      <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970893#M953855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=If(Month(Date) &amp;gt; 6, 'Year End ',&lt;STRONG style="font-style: inherit;"&gt;'Mid Year '&lt;/STRONG&gt;) &amp;amp; Year(Date) as NewDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;Hope this will helps u...!!!&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mohammad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2015 11:26:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970893#M953855</guid>
      <dc:creator>mohammadkhatimi</dc:creator>
      <dc:date>2015-11-24T11:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Based on month concatenate month + string</title>
      <link>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970894#M953856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, thanks work perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2015 01:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Based-on-month-concatenate-month-string/m-p/970894#M953856</guid>
      <dc:creator>nicholas5141</dc:creator>
      <dc:date>2015-11-25T01:04:40Z</dc:date>
    </item>
  </channel>
</rss>

