<?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 AW:How to get the last year selected on report open, by default in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204469#M501039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The option Roland told you is good enough, you will need to create a different action for the current month. Basically, both answers do the same, but his saves you one step (creating the variable in the script).&lt;/P&gt;&lt;P&gt;If you use a master calendar, you can use a composite field monthyear, for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Date(Today(), 'YYYYMM') AS YearMonth&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;And then do a selection in the action likewise.&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Feb 2011 10:01:57 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-02-08T10:01:57Z</dc:date>
    <item>
      <title>How to get the current year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204463#M501031</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 using QlikView 9 and I am facing an issue which seems very basic, but unfortunately I am not able to find the solution.My report has a list box for year (which displays last 4 years, including the current year). I want the report to show a default selection of the current year on report open --that is (making it clear !) on open, the report should show a default selection with year selected as the current year. I have tried two things that works fine for this..but it involves me going and &lt;STRONG&gt;hardcoding the current year selection,&lt;/STRONG&gt; &lt;STRONG&gt;which is not accepatable&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;1) I went to Settings--&amp;gt;Document Properties--&amp;gt;(Document Event Triggers)OnOpen--&amp;gt;Edit Action --&amp;gt;Selection--&amp;gt;Select in field--&amp;gt;for 'field', I give the year field name ..and for search string i give 2011&lt;/P&gt;&lt;P&gt;2) I create a book mark with the year selected as 2011. Then i saved it. Settings--&amp;gt;Document Properties--&amp;gt;(Document Event Triggers)OnOpen--&amp;gt;Edit Action--&amp;gt;Bookmarks--&amp;gt;Apply Bookmark --&amp;gt; and i give this saved bookmarks' ID.&lt;/P&gt;&lt;P&gt;So, please help me to get a solution for this so that on report load I get a default selection with current year coming up (and the current year should be dynamic..that is the next year, i needn't go and manually change it to 2012)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 15:36:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204463#M501031</guid>
      <dc:creator />
      <dc:date>2011-02-07T15:36:34Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204464#M501032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;to code your search expression dynamicly (e.g. in your OnOpen-Trigger) try the today()-function instead of hardcoding the year. Similar to this in the search string:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;= year(today())&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Regards, Roland&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 15:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204464#M501032</guid>
      <dc:creator />
      <dc:date>2011-02-07T15:52:59Z</dc:date>
    </item>
    <item>
      <title>How to get the current year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204465#M501033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;First note that OnOpen macros may not work when the document is opened by client (either Desktop, Plugin, AJAX).&lt;/P&gt;&lt;P&gt;If that's not the case, then set a variable in your script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;SET vCY = Year(Today());&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Then in your action, set "Select in Field", "Search String" to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;=$(vCY)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Try with a button object, it should work.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 15:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204465#M501033</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-07T15:54:25Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204466#M501034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kunle,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. But it seems that am going wrong somewhere..its not working out as expected.&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/2626.Year.bmp"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/2626.Year.bmp" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;As you can see, I am going to OnOpen--&amp;gt;Select in field and in field, I am giving the year-column name and in search string am giving the present year expression =&lt;B&gt;Year&lt;/B&gt;(&lt;B&gt;today&lt;/B&gt;()) .&lt;/P&gt;&lt;P&gt;Then I am giving OK and coming out. Saving the report. closing it. opening it fresh, expecting that I'll get a report with a default selection on open with year as 2011.&lt;/P&gt;&lt;P&gt;Can you kindly try this out and let me know...it would be really greatful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 16:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204466#M501034</guid>
      <dc:creator />
      <dc:date>2011-02-07T16:05:00Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204467#M501036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is exactly what I've done and it works fine. The selection seems to work regardless if the year (YEAR_NUM in your case) is loaded as text or numeric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Feb 2011 19:48:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204467#M501036</guid>
      <dc:creator />
      <dc:date>2011-02-07T19:48:27Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204468#M501037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@&lt;A href="http://community.qlik.com/members/mabaeyens/default.aspx"&gt;&lt;STRONG&gt;Miguel&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt; ...i tried the way you told, and its working...&lt;/P&gt;&lt;P&gt;So if I want the default selection to be current year and current month, can I create another variable&lt;/P&gt;&lt;P&gt;SET vCM = Month(Today());&lt;/P&gt;&lt;P&gt;and in the OnOpen actions, as a second option I give in select field.&lt;/P&gt;&lt;P&gt;=&lt;B&gt;$(vCM)&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Is it the most easy way or is there any better options to have current year and month selected by default when the report opens?&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 09:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204468#M501037</guid>
      <dc:creator />
      <dc:date>2011-02-08T09:52:52Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204469#M501039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The option Roland told you is good enough, you will need to create a different action for the current month. Basically, both answers do the same, but his saves you one step (creating the variable in the script).&lt;/P&gt;&lt;P&gt;If you use a master calendar, you can use a composite field monthyear, for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Date(Today(), 'YYYYMM') AS YearMonth&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;And then do a selection in the action likewise.&lt;/P&gt;&lt;P&gt;Hope that helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 10:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204469#M501039</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-08T10:01:57Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204470#M501040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Miguel,&lt;/P&gt;&lt;P&gt;Due to some prob, the option that Ronald suggested is not working,&lt;/P&gt;&lt;P&gt;But when ever I set a variable in the script side, pass it to the report and use it for default settings..(as the one you have suggested) it is working perfectly.&lt;/P&gt;&lt;P&gt;Now I am stuck up with a small issue. I am setting a new variable in the script side..&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;/STRONG&gt;SET vCYM = Date(Today(),'YYYYMM');&lt;/P&gt;&lt;P&gt;With this, I will be able to get the YearMonth combination like (for eg 201102) in the report side. I want to set the default selection as the YearMonth combination with one count lesser. That is..this month if I reload the script, the report on open should show the default selection as 201101 . I tried giving =$((vCYM)-1) in the OnOpen Select Field, but it is not working..when I checked this yields some junk value. Any solution for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 11:24:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204470#M501040</guid>
      <dc:creator />
      <dc:date>2011-02-08T11:24:35Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204471#M501042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'd do all conversions in the script side, so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;SET vCYM = Date(AddMonths(Today(), -1),'YYYYMM'); //For today, this will return 201101&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 11:30:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204471#M501042</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-08T11:30:44Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204472#M501044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Miguel,&lt;/P&gt;&lt;P&gt;That was perfect..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 12:03:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204472#M501044</guid>
      <dc:creator />
      <dc:date>2011-02-08T12:03:02Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204473#M501045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again, .. we had a change in our requirement.&lt;/P&gt;&lt;P&gt;We cannot be always sure that our warehouse tables will be having data upto the previous month. By any chance if the warehouse do not have the previous month data, setting the previous month as default month will show 'no data' charts on load and it's not good.&lt;/P&gt;&lt;P&gt;We have another option..our fact table has a MONTH_SID column which has values in YearMonth format (eg 201102). This will have the latest MONTH_SID of the last load. So it'll be fine if I could assign to a variable, the max value of MONTH_SID from the fact table.&lt;/P&gt;&lt;P&gt;But my question is, in script editor, we do this this variable setting/assigning first and then only we start calling the select queries from various tables. I want to assign to a variable (say vLASTLOAD_YM), the max value of the column MONTH_SID from the fact table named IC_F_RECRUIT .. can you kindly help me with this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 13:33:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204473#M501045</guid>
      <dc:creator />
      <dc:date>2011-02-08T13:33:26Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204474#M501046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Something like the following would do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;MaxMonthSID:LOAD Max(MONTH_SID) AS MAX_MONTH_SIDRESIDENT IC_F_RECRUIT; // If the table IC_F_RECRUIT already exists, then resident, otherwise, datasource LET vMaxMonthSID = Peek('MAX_MONTH_SID', 0); // This assigns the first value of the field to the variable//LET vMaxMonthSID = FieldValue('MAX_MONTH_SID', 1); // If the above doesn't work, uncomment this DROP TABLE MaxMonthSID;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 13:44:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204474#M501046</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-08T13:44:39Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204475#M501047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Miguel,&lt;/P&gt;&lt;P&gt;now &lt;STRONG&gt;vMaxMonthSID&lt;/STRONG&gt; is having the latest MONTH_SID. Is there a way by which I can split the content of this variable and assign it to two new variables for year and month.&lt;/P&gt;&lt;P&gt;That is, say for example if &lt;STRONG&gt;vMaxMonthSID&lt;/STRONG&gt; has value as 200902 ..i'd like to create two new variables in the script side one (say vLY) to hold the year value as 2009 and another (say vLM) to hold the month value.&lt;/P&gt;&lt;P&gt;I am trying to use substring function to extract out these but getting stuck.. &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 15:24:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204475#M501047</guid>
      <dc:creator />
      <dc:date>2011-02-08T15:24:59Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204476#M501048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yep, something like the following will work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LET vMY = Date(Today(), 'YYYYMM');LET vCY = Left($(vMY), 4);LET vCM = Right($(vMY), 2);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 15:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204476#M501048</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-02-08T15:36:57Z</dc:date>
    </item>
    <item>
      <title>AW:How to get the last year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204477#M501049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot Miguel for the help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 15:57:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204477#M501049</guid>
      <dc:creator />
      <dc:date>2011-02-08T15:57:53Z</dc:date>
    </item>
    <item>
      <title>How to get the current year selected on report open, by default</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204478#M501050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello can any one help me how to get the selected bookmark name form bookmark object in a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;vas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jul 2011 15:14:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-the-current-year-selected-on-report-open-by-default/m-p/204478#M501050</guid>
      <dc:creator />
      <dc:date>2011-07-06T15:14:18Z</dc:date>
    </item>
  </channel>
</rss>

