<?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 Calander Creation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957644#M961973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HI All,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;i am creating calander ,but some errore in script for creating min and max data could u please help to resolve this errore ! &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;do you have any app with sample data upload me it will use full me please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Oct 2015 16:21:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-10-24T16:21:27Z</dc:date>
    <item>
      <title>Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957644#M961973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HI All,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;i am creating calander ,but some errore in script for creating min and max data could u please help to resolve this errore ! &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;do you have any app with sample data upload me it will use full me please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 16:21:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957644#M961973</guid>
      <dc:creator />
      <dc:date>2015-10-24T16:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957645#M961974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;T1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; [Product Sale],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Bill_Date) AS billdate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[excel data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Min(billdate) as MinDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Max(billdate) as MaxDate&lt;/P&gt;&lt;P&gt;Resident T1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vFiscalYearStartMonth = 4;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vStartDate = num(Peek('MinDate',0,'Temp'));&lt;/P&gt;&lt;P&gt;LET vEndDate = num(Peek('MaxDate',0,'Temp'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Temp;&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(billdate), '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(billdate) AS Year, // Standard Calendar Year&lt;/P&gt;&lt;P&gt;Month(billdate) AS Month, // Standard Calendar Month&lt;/P&gt;&lt;P&gt;Date(MonthEnd(billdate), 'MMM') AS MonthName,&amp;nbsp; // Standard Calendar Month Name&lt;/P&gt;&lt;P&gt;Dual('Q' &amp;amp; Ceil(Month(billdate)/3), Ceil(Month(billdate)/3)) AS Quarter,&amp;nbsp; // Standard Calendar Quarter&lt;/P&gt;&lt;P&gt;Mod(Month(billdate) - $(vFiscalYearStartMonth), 12)+1 AS FiscalMonth,&amp;nbsp; // Fiscal Calendar Month&lt;/P&gt;&lt;P&gt;YearName(billdate, 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 billdate,&lt;/P&gt;&lt;P&gt;RangeSum(Peek('RowNum'), 1) AS RowNum&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 16:32:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957645#M961974</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-10-24T16:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957646#M961975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 16:58:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957646#M961975</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2015-10-24T16:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957647#M961976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanku Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now it is reloading no errore ,good but only two fields i am able to see like billdate and Product sale where are the rest like FYYear,Fyquarter,FyMonth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 17:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957647#M961976</guid>
      <dc:creator />
      <dc:date>2015-10-24T17:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957648#M961977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 17:17:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/957648#M961977</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-10-24T17:17:33Z</dc:date>
    </item>
  </channel>
</rss>

