<?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 Selecting options from multiple list boxes tied to same field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657742#M537257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am building a dashboard that has multiple tabs.&amp;nbsp; In one of the tabs, I'm tracking sales data by product.&amp;nbsp; In my raw data, I have a field with the date of sale of a particular product.&amp;nbsp; My data table has only one field for date as of now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've created two list boxes based on the date field.&amp;nbsp; One list box displays the year, and one list box displays the month.&amp;nbsp; With this setup, if I pick Jun in Listbox#2, I cannot pick 2014 and 2013 in Listbox#1, since both are tied to the date field.&amp;nbsp; I can either do a selection in the Month listbox or Year listbox, but not both together.&amp;nbsp; If I need to see only Jun 2014 data, I cant.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I overcome this?&amp;nbsp; Is there a way to do it, or should I create a separate field for the year and month from the date, and make those my source?&amp;nbsp; Also, since the data comes from Excel, should I do that calculation in Excel and thereby reduce the load of Qlikview load, or can I do that directly in my Load script without too much overhead?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much for your guidance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 18 Oct 2014 20:29:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-18T20:29:23Z</dc:date>
    <item>
      <title>Selecting options from multiple list boxes tied to same field</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657742#M537257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I am building a dashboard that has multiple tabs.&amp;nbsp; In one of the tabs, I'm tracking sales data by product.&amp;nbsp; In my raw data, I have a field with the date of sale of a particular product.&amp;nbsp; My data table has only one field for date as of now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've created two list boxes based on the date field.&amp;nbsp; One list box displays the year, and one list box displays the month.&amp;nbsp; With this setup, if I pick Jun in Listbox#2, I cannot pick 2014 and 2013 in Listbox#1, since both are tied to the date field.&amp;nbsp; I can either do a selection in the Month listbox or Year listbox, but not both together.&amp;nbsp; If I need to see only Jun 2014 data, I cant.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I overcome this?&amp;nbsp; Is there a way to do it, or should I create a separate field for the year and month from the date, and make those my source?&amp;nbsp; Also, since the data comes from Excel, should I do that calculation in Excel and thereby reduce the load of Qlikview load, or can I do that directly in my Load script without too much overhead?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much for your guidance. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Oct 2014 20:29:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657742#M537257</guid>
      <dc:creator />
      <dc:date>2014-10-18T20:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting options from multiple list boxes tied to same field</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657743#M537258</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;you already found the solution on your own, you have to create seperate month and year fields from your date field during load.&lt;/P&gt;&lt;P&gt;Don't worry about additional load in QV and don't waste any efforts in extending your excel source.&lt;/P&gt;&lt;P&gt;The script extension could look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_1413673828253236" jivemacro_uid="_1413673828253236" modifiedtitle="true"&gt;
&lt;P&gt;LOAD date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(date) as year,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(date) as month&lt;/P&gt;
&lt;P&gt;FROM your.xls;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Oct 2014 23:10:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657743#M537258</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-10-18T23:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting options from multiple list boxes tied to same field</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657744#M537259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great. Thanks for clearing that out for me. Can you help me with the&lt;/P&gt;&lt;P&gt;syntax/formula to create a field for quarter and for financial year for&lt;/P&gt;&lt;P&gt;India, where Q1 is from Apr-Jun and Q4 for Jan to Mar of the following&lt;/P&gt;&lt;P&gt;year?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sent from my SGS3 Android Smartphone&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Oct 2014 04:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657744#M537259</guid>
      <dc:creator />
      <dc:date>2014-10-19T04:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting options from multiple list boxes tied to same field</title>
      <link>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657745#M537260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please close this thread if your initial question is answered and open another one for new questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Oct 2014 07:17:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selecting-options-from-multiple-list-boxes-tied-to-same-field/m-p/657745#M537260</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-10-19T07:17:50Z</dc:date>
    </item>
  </channel>
</rss>

