<?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 Master Calender With Both general Quarter And Fascal Quarter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813955#M287135</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am new to qlikview.&lt;/P&gt;&lt;P&gt;I want to design a calender which will contain quarter in listbox.&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="70" style="border: 1px solid rgb(0, 0, 0); width: 204px; height: 52px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Q1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Q2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Q3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Q4&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;When I will select the Q1 in 1st table month will show Jan,Feb, Mar in one month listbox and Mar, Apr,May in other month listbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Nov 2014 08:18:10 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-12T08:18:10Z</dc:date>
    <item>
      <title>Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813955#M287135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I am new to qlikview.&lt;/P&gt;&lt;P&gt;I want to design a calender which will contain quarter in listbox.&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="70" style="border: 1px solid rgb(0, 0, 0); width: 204px; height: 52px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;Q1&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Q2&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;Q3&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;Q4&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;When I will select the Q1 in 1st table month will show Jan,Feb, Mar in one month listbox and Mar, Apr,May in other month listbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:18:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813955#M287135</guid>
      <dc:creator />
      <dc:date>2014-11-12T08:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813956#M287136</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;Try this&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_14157810158049906" jivemacro_uid="_14157810158049906"&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;SET vFiscalYearStartMonth = 3;&lt;/P&gt;
&lt;P&gt;LET vStartDate = Num(YearStart(Today(), -1));&lt;/P&gt;
&lt;P&gt;LET vEndDate = Num(YearEnd(Today()));&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;FiscalCalendar:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;*,&lt;/P&gt;
&lt;P&gt;Dual('Q' &amp;amp; Ceil(FiscalMonth/3), Ceil(FiscalMonth/3)) AS FiscalQuarter, // Fiscal Calendar Quarter&lt;/P&gt;
&lt;P&gt;Dual(Text(Date(MonthEnd(Date), 'MMM')), FiscalMonth) AS FiscalMonthName; // Fiscal Calendar Month Name&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;*,&lt;/P&gt;
&lt;P&gt;Year(Date) AS Year, // Standard Calendar Year&lt;/P&gt;
&lt;P&gt;Month(Date) AS Month, // Standard Calendar Month&lt;/P&gt;
&lt;P&gt;Date(MonthEnd(Date), 'MMM') AS MonthName,&amp;nbsp; // Standard Calendar Month Name&lt;/P&gt;
&lt;P&gt;Dual('Q' &amp;amp; Ceil(Month(Date)/3), Ceil(Month(Date)/3)) AS Quarter,&amp;nbsp; // Standard Calendar Quarter&lt;/P&gt;
&lt;P&gt;Mod(Month(Date) - $(vFiscalYearStartMonth), 12)+1 AS FiscalMonth,&amp;nbsp; // Fiscal Calendar Month&lt;/P&gt;
&lt;P&gt;YearName(Date, 0, $(vFiscalYearStartMonth)) AS FiscalYear;&amp;nbsp; // Fiscal Calendar Year&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;Date($(vStartDate) + RangeSum(Peek('RowNum'), 1) - 1) AS Date,&lt;/P&gt;
&lt;P&gt;RangeSum(Peek('RowNum'), 1) AS RowNum&lt;/P&gt;
&lt;P&gt;AutoGenerate vEndDate - vStartDate + 1;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:25:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813956#M287136</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-12T08:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813957#M287137</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;Check this thread, hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-7094" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;Fiscal and Standard Calendar generation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:31:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813957#M287137</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-11-12T08:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813958#M287138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you it is working now. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please give a&amp;nbsp; example on Presidency Load &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813958#M287138</guid>
      <dc:creator />
      <dc:date>2014-11-12T08:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813959#M287139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set vFM = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MinMaxDate:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; YearStart(Today(),-2) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Today() as MaxDate&lt;/P&gt;&lt;P&gt;AutoGenerate 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let vMin = NUM(PEEK('MinDate',0,'MinMaxDate'));&lt;/P&gt;&lt;P&gt;Let vMax = NUM(PEEK('MaxDate',0,'MinMaxDate'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table MinMaxDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year + If(Month&amp;gt;=$(vFM), 1, 0) as fYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Dual(SubField('$(MonthNames)',';',Mod(Month+$(vFM), 12)+1),Mod(Month+$(vFM), 12)+1) as fMonth;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(TempDate) as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(TempDate) as Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Q' &amp;amp; Ceil(Month(TempDate)/3) as Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(TempDate) as Year;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp; $(vMin) + IterNo() - 1 as TempDate&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While $(vMin) + IterNo() - 1 &amp;lt;= $(vMax);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Create a List Box for Quarter&lt;/P&gt;&lt;P&gt;Create below two Text Box&lt;/P&gt;&lt;P&gt;=Concat(Distinct Month,',',Month)&lt;/P&gt;&lt;P&gt;=Concat(Distinct fMonth,',',fMonth)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:37:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813959#M287139</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-11-12T08:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813960#M287140</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;In the below script the bold text is preceding load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FiscalCalendar:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;*,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Dual('Q' &amp;amp; Ceil(FiscalMonth/3), Ceil(FiscalMonth/3)) AS FiscalQuarter, // Fiscal Calendar Quarter&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Dual(Text(Date(MonthEnd(Date), 'MMM')), FiscalMonth) AS FiscalMonthName; // Fiscal Calendar Month Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;*,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Year(Date) AS Year, // Standard Calendar Year&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Month(Date) AS Month, // Standard Calendar Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Date(MonthEnd(Date), 'MMM') AS MonthName,&amp;nbsp; // Standard Calendar Month Name&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Dual('Q' &amp;amp; Ceil(Month(Date)/3), Ceil(Month(Date)/3)) AS Quarter,&amp;nbsp; // Standard Calendar Quarter&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Mod(Month(Date) - $(vFiscalYearStartMonth), 12)+1 AS FiscalMonth,&amp;nbsp; // Fiscal Calendar Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;YearName(Date, 0, $(vFiscalYearStartMonth)) AS FiscalYear;&amp;nbsp; // Fiscal Calendar Year&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Date($(vStartDate) + RangeSum(Peek('RowNum'), 1) - 1) AS Date,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RangeSum(Peek('RowNum'), 1) AS RowNum&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AutoGenerate vEndDate - vStartDate + 1;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;In the bottom most load statement we derived the date column, using this field on next load we arrived the remaining fields.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hope this helps you.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:41:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813960#M287140</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-11-12T08:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813961#M287141</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;Check this.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2013/03/04/preceding-load&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it answered then close this thread by selecting appropriate answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:41:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813961#M287141</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-12T08:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813962#M287142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks for reply.&lt;/P&gt;&lt;P&gt;But I want to know what is preceding load and with a simple example like emp or dept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you…&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 08:47:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813962#M287142</guid>
      <dc:creator />
      <dc:date>2014-11-12T08:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813963#M287143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys thanks for the reply,&lt;/P&gt;&lt;P&gt;Can any one help me on value band?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like if I have a salary column in a range of 7000 to 25000,&lt;/P&gt;&lt;P&gt;what is the syntax I have to write to show only members whose salary is greater than 10000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 10:47:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813963#M287143</guid>
      <dc:creator />
      <dc:date>2014-11-12T10:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calender With Both general Quarter And Fascal Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813964#M287144</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;Can you create new discussion and please attach sample data and expected output.&lt;/P&gt;&lt;P&gt;I'm sure someone of us will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2014 10:50:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calender-With-Both-general-Quarter-And-Fascal-Quarter/m-p/813964#M287144</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-11-12T10:50:05Z</dc:date>
    </item>
  </channel>
</rss>

