<?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: Problem in multi selections in years in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-in-multi-selections-in-years/m-p/1270457#M860044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply add &lt;/P&gt;&lt;P&gt;Month and Year to your Multi Box chart&lt;/P&gt;&lt;P&gt;User can select single month or multiple..&lt;/P&gt;&lt;P&gt;And the data will change according to the user selection.&lt;/P&gt;&lt;P&gt;Is this what you need?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jan 2017 16:29:46 GMT</pubDate>
    <dc:creator>MK9885</dc:creator>
    <dc:date>2017-01-18T16:29:46Z</dc:date>
    <item>
      <title>Problem in multi selections in years</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-multi-selections-in-years/m-p/1270456#M860043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want display worked hours per EMP_ID&amp;nbsp; month wise , year wise and multi selection of months and years alone.&lt;/P&gt;&lt;P&gt;employee w&lt;SPAN style="font-size: 13.3333px;"&gt;orked hours enter&lt;/SPAN&gt; daily basis&lt;/P&gt;&lt;P&gt;here condition is worked hours &amp;lt;4 is available,&amp;gt;=4&amp;amp;&amp;lt;8 is partially available,&amp;gt;=8 is occupied.&lt;/P&gt;&lt;P&gt;could you please tell me script level&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;IMG alt="Emp.png" class="jive-image image-2" height="851" src="https://community.qlik.com/legacyfs/online/149888_Emp.png" style="height: 851.459px; width: 1116px;" width="1116" /&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Yuvaraj&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/Problem-in-multi-selections-in-years/m-p/1270456#M860043</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in multi selections in years</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-multi-selections-in-years/m-p/1270457#M860044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simply add &lt;/P&gt;&lt;P&gt;Month and Year to your Multi Box chart&lt;/P&gt;&lt;P&gt;User can select single month or multiple..&lt;/P&gt;&lt;P&gt;And the data will change according to the user selection.&lt;/P&gt;&lt;P&gt;Is this what you need?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 16:29:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-multi-selections-in-years/m-p/1270457#M860044</guid>
      <dc:creator>MK9885</dc:creator>
      <dc:date>2017-01-18T16:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in multi selections in years</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-in-multi-selections-in-years/m-p/1270458#M860045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your expected output, you want a new field to display if an employee available or occupied based on worked hours? IF Yes,&lt;/P&gt;&lt;P&gt;Then in your script write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(WorkedHours &amp;lt; 4, 'Available', IF(WorkedHours &amp;gt;= 4 AND WorkedHours &amp;lt; 8, 'Partially Available', &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(WorkedHours &amp;gt;= 8, 'Occupied'))) AS Availability,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Sheetdate) AS Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Sheetdate) AS Month; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;LOAD EMPID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WorkedHours, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sheetdate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[WorkedHours.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let us know if this is what you are looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jan 2017 17:09:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-in-multi-selections-in-years/m-p/1270458#M860045</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2017-01-18T17:09:31Z</dc:date>
    </item>
  </channel>
</rss>

