<?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: Common 'Period' filter visible for multiple tabs/table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252090#M396145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean it is in the a different format? If not, can you post few lines sample data of what you mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Nov 2016 07:34:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-11-25T07:34:33Z</dc:date>
    <item>
      <title>Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252083#M396138</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;In my report I have more than 5 tabs(pages) and each of them displays data from individual QVDs(almost). I have a common area at the top of the report to display the filters (listboxes) . In that , I have to place period related listboxes like Year , Month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I load the period column from all the QVDs with same name (say, Period) and display the year as Year(Period) and month as Month(Period) or I can load periods with names related to tabs (say PeriodForTab1 , PeriodForTab2 , etc) and load the listboxes with respective data visible for each tab alone ? I tried both the ways , in the former way I get some numbers in the tables inside the tabs but in the latter way I am getting different numbers upon selecting same year / month combo. My basic requirement is to have common name for the period.(The former way).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please pour in your suggestions/ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2016 12:36:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252083#M396138</guid>
      <dc:creator />
      <dc:date>2016-11-15T12:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252084#M396139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The best way would be to create a Date data island&lt;/P&gt;&lt;P&gt;This means that the field names here must not be linked or associated to other fields in the app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// This is your common table&lt;/P&gt;&lt;P&gt;DateIsland:&lt;/P&gt;&lt;P&gt;load Year as DI_Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month as DI_Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Week as DI_Week&lt;/P&gt;&lt;P&gt;From YourCalendar.csv;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;* DI just stands for data island and is renamed to not be linked on to the rest of the model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then create variables i.e:&lt;/P&gt;&lt;P&gt;vYear =DI_Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can drop the DI_* fields as listboxes on the front end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in your charts, use the variable in set analysis.&lt;/P&gt;&lt;P&gt;for example:&lt;/P&gt;&lt;P&gt;sum(Sales) on tab 1 for qvd 1 would become sum({&amp;lt;PeriodForTab1 = {&lt;STRONG&gt;$(vYear)}&amp;gt;}&lt;/STRONG&gt;Sales)&lt;/P&gt;&lt;P&gt;sum(Sales) on tab 2 for qvd 2 would become sum({&amp;lt;PeriodForTab2 = {&lt;STRONG&gt;$(vYear)}&amp;gt;}&lt;/STRONG&gt;Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although data islands are not best practise, imo it seems to be the easiest way to get a common date selection across all your different tabs and qvds. Best option would be to seperate the app into smaller ones and only keep data that is related.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Nov 2016 12:53:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252084#M396139</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-15T12:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252085#M396140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your suggestion. Your ideology may work, but the thing is: Period related data come from every QVD I have. So if i extract Year , Month columns from them, I would get Syn. keys, because they have same name apart from the Unique column name. Please suggest how to overcome Syn keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2016 07:01:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252085#M396140</guid>
      <dc:creator />
      <dc:date>2016-11-16T07:01:18Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252086#M396141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many questions can arise from a data model perspective.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does the data relate to each other?&lt;/P&gt;&lt;P&gt;Can a few of the sources be concatenated to overcome synthetic keys,improve performance,clean up the data model?&lt;/P&gt;&lt;P&gt;If not, can the app be separated into smaller apps with a focus on specific reporting areas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you decide to go with the above suggestion - Data Island, You will have to rename each of the common period fields to be specific to that source i.e order_year, sales_year , sales_month etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using DI_Year from your stand alone table will be a common way of having one calendar to select from and will apply it to all other sources using the expression:&lt;/P&gt;&lt;P&gt;sum({&amp;lt;sales_year= {&lt;STRONG&gt;$(vYear)}&amp;gt;}&lt;/STRONG&gt;Sales)&lt;/P&gt;&lt;P&gt;or for the orders source&lt;/P&gt;&lt;P&gt;sum({&amp;lt;order_year= {&lt;STRONG&gt;$(vYear)}&amp;gt;}Orders&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully this helps...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2016 07:17:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252086#M396141</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-16T07:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252087#M396142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by stand alone table here ? From which QVD(s) I should load period columns in this table ?&lt;/P&gt;&lt;P&gt;If i load &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; period fields to be specific to that source i.e order_year, sales_year , sales_month etc , how will I relate them to the stand alone table ? If I load stand alone table data into List box and make selections , will it reflect the data in the tabs ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2016 08:51:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252087#M396142</guid>
      <dc:creator />
      <dc:date>2016-11-16T08:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252088#M396143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;The stand alone table is referred to as a data island which will be renamed as previously posted i.e Year as DI_Year&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;so that it is not associated with other tables.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;the variable will hold the value of Year&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;vYear =DI_Year&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Set analysis will help use the stand alone table selection and apply it to the table(s) of your choice.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;sum({&amp;lt;order_year= {&lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;$(vYear)}&amp;gt;}Orders&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;see attached sample.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;Notice the tables are not linked but the data island allows to pass selections using set analysis.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2016 10:10:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252088#M396143</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-16T10:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252089#M396144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your example and the other example by &lt;A href="https://community.qlik.com/qlik-users/2286"&gt;rwunderlich&lt;/A&gt; here-&amp;gt;&amp;nbsp; &lt;A _jive_internal="true" href="https://community.qlik.com/thread/66717"&gt;https://community.qlik.com/thread/66717&lt;/A&gt;‌ helped me to create date island. Actually it works well (Thanks to both of you !) . One thing I am worried about is , in one of my table whose date also should be part of date island but it does not have the same key column present . Is it possible to make that table's date also a part in my date island ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 07:09:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252089#M396144</guid>
      <dc:creator />
      <dc:date>2016-11-25T07:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252090#M396145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean it is in the a different format? If not, can you post few lines sample data of what you mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 07:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252090#M396145</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-25T07:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252091#M396146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used 'Datelink' concept (from Rob) for data island rather than your 'Unlinked' concept. Now I am trying your concept and i have following doubts.&lt;/P&gt;&lt;P&gt;1.) Your variable 'vDIYearMonth' has this formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =if(GetSelectedCount(DI_YearMonth)=0,MaxString(DI_YearMonth),DI_YearMonth)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; To understand this , I placed a text object with the expression GetSelectedCount(DI_YearMonth) which always show 0 even if any of the dates are selected from DI_Year and DI_Month list boxes. It only shows the selected count if the value from DI_YearMonth list box is selected which is correct as per the variable's formula. I am wondering how QlikView still shows the correct month and year data in the table even if we use DI_Year and DI_Month alone for selected (leaving DI_YearMonth list box untouched).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.) My requirement is different. If no value is selected in the Date and Year list boxes (i don't have yearMonth list box) then all the&amp;nbsp; values for all the year and month should be displayed.Please help me on modifying your formula to acheive this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 11:44:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252091#M396146</guid>
      <dc:creator />
      <dc:date>2016-11-25T11:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252092#M396147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you are using a Date Link table, then you probably don't need any GetSelected count, etc. Just&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you have multiple data types, possibly:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;DateType={OrderDate}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2016 23:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252092#M396147</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2016-11-25T23:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252093#M396148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In your example you have used the following expression to show the 'Sum' of Qty in the 'Order' table. &lt;/P&gt;&lt;P&gt;Sum({&amp;lt;Order_YearMonth = {$(vDIYearMonth)}&amp;gt;}Qty)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So here in your expression you have a variable &lt;SPAN style="font-size: 13.3333px;"&gt;vDIYearMonth which will give the 'DI_YearMonth' which is selected&amp;nbsp; in the selected and MaxString(&lt;SPAN style="font-size: 13.3333px;"&gt;DI_YearMonth&lt;/SPAN&gt;) if nothing is selected. Can this be changed to display all the YearMonth's data if nothing is selected ? If so how should I do that ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2016 06:57:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252093#M396148</guid>
      <dc:creator />
      <dc:date>2016-12-05T06:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252094#M396149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi James,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a link table. bring the common fields in link table and drop them from individual table.&lt;/P&gt;&lt;P&gt;Please find attached the example for the same.&lt;/P&gt;&lt;P&gt;Hope it helps you. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;SPAN class="emoticon-inline emoticon_happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2016 08:15:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252094#M396149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-05T08:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252095#M396150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you would like to default the period all periods when nothing is selected, then change the definition of the varable vDIYearMonth to:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GetPossibleCount&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DI_YearMonth&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;lt;&amp;gt; 1, '*',&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DI_YearMonth&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;* changed above&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;This will give you all YearMonth periods if nothing is selected instead of showing the latest period only.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Dec 2016 13:19:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252095#M396150</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-05T13:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252096#M396151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This version has a lag in showing the months if more than one month is selected. See below snapshot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="date_island_v2.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/145833_date_island_v2.JPG" style="height: 250px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;Here you can see data for months 01 and 02 for 2016 are displayed , but all the data from 2015 are also displayed which is not selected. How can we modify the variable to display the selected months alone ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2016 07:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252096#M396151</guid>
      <dc:creator />
      <dc:date>2016-12-07T07:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252097#M396152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;Hi JB,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;Please see attached.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;It’s fairly flexible...Pay attention to the variables&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;Although I must agree that the Link table may be a better option. Up to you..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;Hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: calibri, verdana, arial, sans-serif; font-size: 12pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2016 08:08:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252097#M396152</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-07T08:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252098#M396153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your Concat variable worked for my req.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2016 09:04:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252098#M396153</guid>
      <dc:creator />
      <dc:date>2016-12-07T09:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252099#M396154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One last doubt. Can the order and sales tables be combined into one single table ? I mean to display a common YearMonth dimension and display Sum of order and Sum of sales in expression ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-JB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2016 06:54:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252099#M396154</guid>
      <dc:creator />
      <dc:date>2016-12-08T06:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252100#M396155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi JB,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it can be done that way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2016 06:57:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252100#M396155</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-08T06:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252101#M396156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But specifically we are adding the Order_YearMonth or Sales_YearMonth in the dimension , right ? Do we need to add both the dimensions together in one table, align the sorting and hide anyone ? Or does this need to be combined in script itself ? If so how it should be combined ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-JB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2016 07:04:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252101#M396156</guid>
      <dc:creator />
      <dc:date>2016-12-08T07:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Common 'Period' filter visible for multiple tabs/table</title>
      <link>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252102#M396157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See attached.&lt;/P&gt;&lt;P&gt;Basically create one field for YearMonth and a new field to flag Sales or Orders.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2016 07:25:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Common-Period-filter-visible-for-multiple-tabs-table/m-p/1252102#M396157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-12-08T07:25:20Z</dc:date>
    </item>
  </channel>
</rss>

