<?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 calendar with Timestamp in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335218#M825213</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,so I changed the variable Vmindate (attached new qvw)&lt;/P&gt;&lt;P&gt;if the user selects in calendar 1 the values:&lt;/P&gt;&lt;P&gt;year=2017&lt;/P&gt;&lt;P&gt;month=jul&lt;/P&gt;&lt;P&gt;day=17&lt;/P&gt;&lt;P&gt;the expected&amp;nbsp; result= 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the user selects in calendar 2 ,the following time range&lt;/P&gt;&lt;P&gt;2017-07-17 00:00:00&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;2017-07-17 15:00:00&lt;/P&gt;&lt;P&gt;the expactedresult=3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jul 2017 19:44:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-07-19T19:44:29Z</dc:date>
    <item>
      <title>Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335204#M825199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;can someone upload an example script for a master calendar with Date and Time PLEASE&lt;/P&gt;&lt;P&gt; I am trying to use the following script:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;But I am getting an error&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a:&lt;/P&gt;&lt;P&gt;Load ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SaleDate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; floor(SaleDate) as SaleDateKey &lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID, SaleDate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,2017-07-16 20:00:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,2017-07-16 21:00:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3,2017-07-17 12:00:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4,2017-07-17 13:00:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5,2017-07-17 15:00:00&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MinMaxDates:&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD Floor(Min(TimeStamp#(SaleDate, 'DD/MM/YYYY hh:mm:ss'))) as MinDate,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Floor(Max(TimeStamp#(SaleDate, 'DD/MM/YYYY hh:mm:ss'))) as MaxDate&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RESIDENT a;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vMinDate = FieldValue('MinDate', 1);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vMaxDate = FieldValue('MaxDate', 1);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP TABLE MinMaxDates;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MasterCalendar1:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD *,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Hour(AddedTimeStamp) as Hour,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Day(AddedTimeStamp) as Day,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(AddedTimeStamp) as Month;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DayStart(TimeStamp($(vMinDate) + (RecNo()/60/24) + (IterNo() -1))) as AddedDate,&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TimeStamp($(vMinDate) + (RecNo()/60/24) + (IterNo() -1)) as AddedTimeStamp&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AUTOGENERATE 1439&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHILE Num($(vMinDate) + IterNo() -1) &amp;lt;= Num($(vMaxDate));&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/170705_pastedImage_11.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335204#M825199</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335205#M825200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this out&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-9063"&gt;Master Calendar with Hours, Minutes &amp;amp;amp; Seconds&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I suggest an alternative approach of creating a separate&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3206"&gt;The Master Time Table&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 11:06:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335205#M825200</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T11:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335206#M825201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks, Sunney,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;In order to understand the post :'The Master Time Table'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;Do I need to create two MasterCalendar tables? can you upload an example&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my goal is to create an input box in the UI so the user can select a range of date-time&lt;/P&gt;&lt;P&gt;(for example from 2017-07-16 20:00:00&amp;nbsp; to 2017-07-17 13:00:00).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can I create the input box with start date &amp;amp;time and end date &amp;amp;time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 11:36:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335206#M825201</guid>
      <dc:creator />
      <dc:date>2017-07-19T11:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335207#M825202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;In order to understand the post :'The Master Time Table'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;Do I need to create two MasterCalendar tables? can you upload an example&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, Master Calendar and Master Time. Unfortunately, I couldn't find a thread where you can see this, but you should be able to do it if you go through the thread by Henric. The script would look similar to master calendar script, but will just use the time portion of the timestamp field.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;my goal is to create an input box in the UI so the user can select a range of date-time&lt;/P&gt;
&lt;P&gt;(for example from 2017-07-16 20:00:00&amp;nbsp; to 2017-07-17 13:00:00).&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Not sure why you need a date and time calendar for this? This could work without the calendar also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 11:44:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335207#M825202</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T11:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335208#M825203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so can you please help me to build an 'Input Box' with range of date-&lt;STRONG&gt;&lt;EM&gt;time &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;Attached an example qvw&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;*my original qvw&amp;nbsp; file contains millions of records &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;I know how to build an input box only with date rang, but I want to &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="short_text" lang="en"&gt;customize it so that it holds time too.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 11:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335208#M825203</guid>
      <dc:creator />
      <dc:date>2017-07-19T11:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335209#M825204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 12:17:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335209#M825204</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T12:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335210#M825205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="alt-edited"&gt;Exactly what I wanted &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 13:07:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335210#M825205</guid>
      <dc:creator />
      <dc:date>2017-07-19T13:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335211#M825206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome, please close the thread by marking correct and helpful responses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 13:08:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335211#M825206</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T13:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335212#M825207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sunny,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;I ran into another question in my qvw.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;I create a table box that counts the ID d&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;epending on the user's date selection.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;count(DISTINCT {&amp;lt;SaleDate_DateFormat={"&amp;gt;=$(v_MinDate) &amp;lt;=$(v_MaxDate)"}&amp;gt;}ID)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;if the user filter the 'Year'/ 'Month','Day' list box t&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;he calculation is correct&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;but if he filter the time range I need to change the &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;formula&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;count(DISTINCT {&amp;lt;SaleDate={"&amp;gt;=$(VstartDate) &amp;lt;=$(VEndDate)"}&amp;gt;}ID)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;is it possible to create only one formula that will calculate the user selection, n&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="alt-edited"&gt;o matter which date filter he select&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:32:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335212#M825207</guid>
      <dc:creator />
      <dc:date>2017-07-19T14:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335213#M825208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure I follow... are you talking about text box object? This should not be impacted by the range you enter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 14:39:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335213#M825208</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T14:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335214#M825209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes,tex object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 2 types of calendars:&lt;/P&gt;&lt;P&gt;Calander I - in witch the user can select year, month, day. (vmindate &amp;amp; vmaxdate&lt;/P&gt;&lt;P&gt;Calander II - in witch the user can select date as well as time (vstartdate &amp;amp; venddate) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a text object that will calculate :&lt;/P&gt;&lt;P&gt;1. If the user select dates in calander I - count(DISTINCT {&amp;lt;SaleDate_DateFormat={"&amp;gt;=$(vMinDate) &amp;lt;=$(vMaxDate)"}&amp;gt;}ID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. if the user selects date &amp;amp; time rage in calander 2 - count(DISTINCT {&amp;lt;SaleDate={"&amp;gt;=$(VstartDate) &amp;lt;=$(VEndDate)"}&amp;gt;}ID)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 18:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335214#M825209</guid>
      <dc:creator />
      <dc:date>2017-07-19T18:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335215#M825210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am only seeing a single master calendar in your app... I guess based on the selections you have in there what is your expected output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 19:03:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335215#M825210</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T19:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335216#M825211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what I mean is that I have 2 calendars in the user interface....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the outcome should be the count of ID`s regardless of which calendar the user is using&amp;nbsp; (but according to the user`s selection on the calendar used)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope its clear, if not - let me know.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 19:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335216#M825211</guid>
      <dc:creator />
      <dc:date>2017-07-19T19:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335217#M825212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess it will help me if you can tell me the numerical output (like count will be 10) for the given selections and may be another set of outputs based on other selections.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 19:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335217#M825212</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-07-19T19:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335218#M825213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,so I changed the variable Vmindate (attached new qvw)&lt;/P&gt;&lt;P&gt;if the user selects in calendar 1 the values:&lt;/P&gt;&lt;P&gt;year=2017&lt;/P&gt;&lt;P&gt;month=jul&lt;/P&gt;&lt;P&gt;day=17&lt;/P&gt;&lt;P&gt;the expected&amp;nbsp; result= 5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the user selects in calendar 2 ,the following time range&lt;/P&gt;&lt;P&gt;2017-07-17 00:00:00&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;2017-07-17 15:00:00&lt;/P&gt;&lt;P&gt;the expactedresult=3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2017 19:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1335218#M825213</guid>
      <dc:creator />
      <dc:date>2017-07-19T19:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Master calendar with Timestamp</title>
      <link>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1816804#M1213072</link>
      <description>&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;is the &lt;A href="https://community.qlik.com/docs/DOC-9063" target="_blank" rel="noopener"&gt;Master Calendar with Hours, Minutes &amp;amp;amp; Seconds&lt;/A&gt;&amp;nbsp;article somehow restricted? I get a message "&lt;SPAN&gt;You do not have sufficient privileges for this resource or its parent to perform this action."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;cheers&lt;BR /&gt;Piotr&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 22:15:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Master-calendar-with-Timestamp/m-p/1816804#M1213072</guid>
      <dc:creator>piotr-bratek</dc:creator>
      <dc:date>2021-06-21T22:15:53Z</dc:date>
    </item>
  </channel>
</rss>

