<?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: Today as default when page loads in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006151#M975574</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;but that is why i want to ensure that the date is Today(2) - therefore the fraction part will always be different.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Aug 2015 05:39:48 GMT</pubDate>
    <dc:creator>josephinetedesc</dc:creator>
    <dc:date>2015-08-27T05:39:48Z</dc:date>
    <item>
      <title>Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006143#M975564</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 trying to set the default for a page - I want the default date to appear in the Calendar:&lt;/P&gt;&lt;P&gt;I have tried setting a variable called vMyDate = Today() &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have then gone to the page and tried to get the Calendar object to display today's date and therefore the chart would update to show today's values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also tried making a button and using the trigger to set the date&amp;nbsp; - (I think i remember something about dates being treated as strings???)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Complication:&amp;nbsp; The calendar object reflects the field Appt_DtTm (this is decimal and shows date and time).&amp;nbsp; I need the date and time reflected in the chart - see graphic&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;SPAN style="font-family: 'Calibri','sans-serif'; font-size: 11pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;App_DtTm&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'HH:MM') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;anyhelp gratefully appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;jo&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 04:59:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006143#M975564</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T04:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006144#M975565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not a good idea to store date and time in the same field - this is due to the high cardinality of timestamps. You will get better performance by splitting it into date and time and rounding the time to the smallest duration of intersest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To get separate fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOAD ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Floor(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm)) As Appt_Dt,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Time(Round(Frac(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm), 1/24) As Appt_Time&amp;nbsp;&amp;nbsp; // to the nearest hour&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This assumes that the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm is recognised as a time stamp.&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:15:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006144#M975565</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T05:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006145#M975566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But I need the chart respond to the Appt_Time and the Appt_Dt ... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006145#M975566</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T05:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006146#M975567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Date/time values are stored in units of day, so the date is the integer part of the date (Floor()) and the time is the fractional part (Frac()). 24 hours is 1 day, so one hour is the value 1/24, one minute is 1/24/60 (=1/1440) and one second is 1/24/60/60 (=1/86400). So to round time to the nearest hour we say Round(Frac(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm), 1/24) and to display that as a time value, we format it with Time&amp;nbsp; - Time(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Round(Frac(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm), 1/24)).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:22:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006146#M975567</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T05:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006147#M975568</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;Josephine Tedesco wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;But I need the chart respond to the Appt_Time and the Appt_Dt ...&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the Appt_DtTm currently linked to the fact values in the chart? The code fragment I gave earlier should be part of the LOAD where you are currently loading &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm - but instead of loading &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_DtTm, you are loading Appt_Dt and Appt_Tm as two fields instead of one.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can make selections on either field or use them as dimensions...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006147#M975568</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T05:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006148#M975569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes I understand that ... but I am trying to get the chart to show what occurred hourly on a particular day - so my chart dimension is&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;time&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;App_DtTm&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'HH:MM') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;so the calendar treate the App_DtTm as a day but the chart actually shows what occurred on that day but by the hour/time&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:27:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006148#M975569</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T05:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006149#M975570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is Time() does not change the underlying value, so you will be getting different values that look the same, but are not. That's why you need to use the Floor() and Round(Frac()) calculations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, a timestamp of 2015/08/27 07:33:15.01563 will display as 7:33, but so will 2013/12/11 07:33:22.565 and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;2015/08/27 07:06:01.0001 -- despite the fact the Time() makes them look the same, they will all have different values.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:34:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006149#M975570</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T05:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006150#M975571</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;Josephine Tedesco wrote:&lt;/P&gt;
&lt;P&gt;yes I understand that ... but I am trying to get the chart to show what occurred hourly on a particular day - &lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if you use the code i gave you, the time field will be in hours, so all the transactions that happen in that hour will get the same time value and you can use that as a chart dimension in hours.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:37:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006150#M975571</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T05:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006151#M975574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;but that is why i want to ensure that the date is Today(2) - therefore the fraction part will always be different.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:39:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006151#M975574</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T05:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006152#M975577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok - I see that - but that is a different question (probably for another day when I start checking what it is exactly that is wanted - probably better than what I am doing actually) For now though&amp;nbsp; I just want to be able to set the date to Today(2) when I open up that page &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006152#M975577</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T05:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006153#M975580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Coming back to the first part of your question:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Josephine Tedesco wrote:&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am trying to set the default for a page - I want the default date to appear in the Calendar:&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have tried setting a variable called vMyDate = Today()&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have then gone to the page and tried to get the Calendar object to display today's date and therefore the chart would update to show today's values.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have also tried making a button and using the trigger to set the date&amp;nbsp; - (I think i remember something about dates being treated as strings???)&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rather than using a trigger to set the date, use a smart expression for for the variable defining the report date. Let's cal it vMaxDate for this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want one which will display the most recent date in the model, then define vMaxDate like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set vMaxDate = =Date(Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt ));&amp;nbsp;&amp;nbsp; // the two = signs are not a typo&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your dates may extend to the future, and you want to default today unless something is selected:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMaxDate = =Date(If(&lt;SPAN class="Bold"&gt;GetSelectedCount(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt) = 0, Today(), Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt));&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;These two expressions will return the selected date if one is selected, but will return something useful if nothing is selected.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The extra sign causes the variable to carry the evaluated value of the expression, so you can use it simply like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt&amp;nbsp; = {'$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;vMaxDate )'}&amp;gt;} Amount)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rather than&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sum({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt&amp;nbsp; = {'$(=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Date(If(&lt;/SPAN&gt;&lt;SPAN class="Bold" style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;GetSelectedCount(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt) = 0, Today(), Max(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Appt_Dt))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)'}&amp;gt;} Amount)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 05:53:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006153#M975580</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T05:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006154#M975583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can see what you are doing - you are getting to the chart expression and eventually I will probably need to do this ... but I only want the date to be the dimension that causes the chart to change - and for this I want the default to be today's date. &lt;/P&gt;&lt;P&gt;At the moment when I choose a date from the Calendar - The chart responds how I want it to.&amp;nbsp; I was hoping that there was a way of just getting the default for the sheet to be today's date.&amp;nbsp; So the chart would open to today's values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 06:07:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006154#M975583</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T06:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006155#M975584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The second option in my post does just that - it defaults to Today() if nothing is selected....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 06:12:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006155#M975584</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-27T06:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Today as default when page loads</title>
      <link>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006156#M975585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;vMaxDate = =Date(If(&lt;SPAN class="Bold"&gt;GetSelectedCount(&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;Appt_Dt) = 0, Today(), Max(&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;Appt_Dt));&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;so I go to Variables Overview &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and add VMaxDate as a Variable &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and in the Definition&amp;nbsp; add&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; = =Date(If(&lt;SPAN class="Bold"&gt;GetSelectedCount(&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;Appt_Dt) = 0, Today(), Max(&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;Appt_Dt)))&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and in the sheet definition I go to Trigger and then??&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Aug 2015 06:45:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Today-as-default-when-page-loads/m-p/1006156#M975585</guid>
      <dc:creator>josephinetedesc</dc:creator>
      <dc:date>2015-08-27T06:45:48Z</dc:date>
    </item>
  </channel>
</rss>

