<?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: Master Calander Creation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954603#M962065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;you need to change your load of the table to&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Min(billdate)) AS MinDate,&lt;/P&gt;&lt;P&gt;Date(Max(billdate)) AS MaxDate&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;that way you'll get only one row in the table &lt;/P&gt;&lt;P&gt;the error you got is because you used&amp;nbsp; aggregation functions without a group by &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Oct 2015 14:08:07 GMT</pubDate>
    <dc:creator>lironbaram</dc:creator>
    <dc:date>2015-10-24T14:08:07Z</dc:date>
    <item>
      <title>Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954601#M962063</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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 13:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954601#M962063</guid>
      <dc:creator />
      <dc:date>2015-10-24T13:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954602#M962064</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 [Product Sale], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bill_Date as billdate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(billdate) 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;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load Min(billdate) as MinDate, Max(billdate) as MaxDate 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;DROP TABLE Temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 14:06:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954602#M962064</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-10-24T14:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954603#M962065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;you need to change your load of the table to&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Min(billdate)) AS MinDate,&lt;/P&gt;&lt;P&gt;Date(Max(billdate)) AS MaxDate&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;that way you'll get only one row in the table &lt;/P&gt;&lt;P&gt;the error you got is because you used&amp;nbsp; aggregation functions without a group by &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 14:08:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954603#M962065</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2015-10-24T14:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954604#M962066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for response,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;geting same Errore .when i calculate min date and max date i tried with both .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Errore as:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load Min(billdate) as MinDate, Max(billdate) as MaxDate Resident T1;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;Not Found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;Please Respond me I am attaching my sample data and my app in new Discussion&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 16:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954604#M962066</guid>
      <dc:creator />
      <dc:date>2015-10-24T16:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954605#M962067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check below that the table name i have given is T1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;T1:&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;LOAD [Product Sale],&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Bill_Date as billdate,&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(billdate) AS billdate&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;[excel data.xlsx]&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Oct 2015 16:24:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954605#M962067</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-10-24T16:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954606#M962068</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:31:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954606#M962068</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-10-24T16:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Master Calander Creation</title>
      <link>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954607#M962069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2015 05:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-Calander-Creation/m-p/954607#M962069</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2015-10-25T05:56:32Z</dc:date>
    </item>
  </channel>
</rss>

