<?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: Selection Yes/No in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1631833#M732862</link>
    <description>&lt;P&gt;Hi Roland,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you manage to resolve your problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 06 Oct 2019 20:39:18 GMT</pubDate>
    <dc:creator>Marnus_Bosch</dc:creator>
    <dc:date>2019-10-06T20:39:18Z</dc:date>
    <item>
      <title>Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630851#M732857</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I have a Sales Report in Qlikview, the most things are done but im not able to find a solution for a "easy" problem.&lt;/P&gt;&lt;P&gt;I can Report the revenue für the calender year and the fiscal year and now i ned a Selection for Example Fiscal Year: Yes/No where the user can choose this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If he says yes he can see only the Fiscal Year Data and when its no than he can see the calender year data.&lt;/P&gt;&lt;P&gt;I only need an example how i can make the selection field with yes/no.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for my bad english! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;greetings Roland&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630851#M732857</guid>
      <dc:creator>rolandg1881</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630859#M732858</link>
      <description>&lt;P&gt;Hello again!&lt;/P&gt;&lt;P&gt;I have a solution. I create an Excel Sheet with Periode: Calender Year and Financial Year&lt;/P&gt;&lt;P&gt;Then i "import" it in the Qlik Report an make a Multibox where the user can can choose Calender or Financial Year.&lt;/P&gt;&lt;P&gt;So i can report only the relecant data.&lt;/P&gt;&lt;P&gt;Good solution or not? I dont know but it works.&lt;/P&gt;&lt;P&gt;Greetings Roland&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 07:29:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630859#M732858</guid>
      <dc:creator>rolandg1881</dc:creator>
      <dc:date>2019-10-03T07:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630860#M732859</link>
      <description>Why not use buttons instead of selections?&lt;BR /&gt;Create a new variable eg: vYear&lt;BR /&gt;In buttons &amp;gt; create trigger to toggle value in the variable&lt;BR /&gt;eg: if vYear=1,'Fiscal Year','Calendar Year'&lt;BR /&gt;Update all charts and expression with this new variable.</description>
      <pubDate>Thu, 03 Oct 2019 07:30:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630860#M732859</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-10-03T07:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630876#M732860</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A good way of solving this issue is to use a button (as previously mentioned) that changes the value of a variable. Let's call this variable vCalendarType.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the user clicks either button it changes the value of this variable. Let us then also assume, that when the user selects the Calendar Year button, the value of&amp;nbsp;vCalendarType = 1 else it is 2 (Fiscal Year).&lt;/P&gt;&lt;P&gt;Then using the value of this variable, you can use the pick and match functions to alternate between set analysis expressions, normally I would have these in variables too.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;Sales for Calender year = vSalesCalendarYr&lt;/P&gt;&lt;P&gt;Sales for Fiscal year = vSalesFiscalYr&lt;/P&gt;&lt;P&gt;Then these variables are populated with a set analysis expression such as:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;vSalesCalendarYr&amp;nbsp; &amp;nbsp; &amp;nbsp; = Sum({$&amp;lt;CalendarYear={2019}&amp;gt;}Sales)&lt;/LI&gt;&lt;LI&gt;vSalesFiscalYr&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;= Sum({$&amp;lt;FiscalYear={2019}&amp;gt;}Sales)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Then in your expression field would look something like this:&lt;/P&gt;&lt;P&gt;pick(match(vCalendarType,1,2),vSalesCalendarYr,vSalesFiscalYr)&lt;/P&gt;&lt;P&gt;Sorry, I didnt actuall write these expressins in the tool, so there might be (but hopefully aren't) syntax errors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hope that helps and good luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 08:00:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1630876#M732860</guid>
      <dc:creator>Marnus_Bosch</dc:creator>
      <dc:date>2019-10-03T08:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1631058#M732861</link>
      <description>&lt;P&gt;Based on a data model and requirements could be implemented different solutions.&lt;/P&gt;&lt;P&gt;I would use mentioned variables as toggle button and Conditional show in Objects/Expressions.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 12:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1631058#M732861</guid>
      <dc:creator>Yevhenii_Senko</dc:creator>
      <dc:date>2019-10-03T12:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1631833#M732862</link>
      <description>&lt;P&gt;Hi Roland,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you manage to resolve your problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Oct 2019 20:39:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1631833#M732862</guid>
      <dc:creator>Marnus_Bosch</dc:creator>
      <dc:date>2019-10-06T20:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Yes/No</title>
      <link>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1633370#M732863</link>
      <description>&lt;P&gt;Hey Roland, here is the base URL to the Design Blog area where you will find a lot of how-to posts.&amp;nbsp; I checked, really nothing I could find that fits your specific situation, but I wanted to pass along in case it may come in handy in the future, I am sure it will be good to give you some ideas on how to approach things at least.&amp;nbsp; I am going to mark your other post as the solution on this one too, if you do end up using one of the other posts to do something different, feel free to use the Accept as Solution button on that post as well to let folks know that worked too and to give the poster credit.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/bg-p/qlik-design-blog&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 21:46:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selection-Yes-No/m-p/1633370#M732863</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-10-09T21:46:38Z</dc:date>
    </item>
  </channel>
</rss>

