<?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: Hide Text Box when Month AND Year are selected? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872624#M993375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jul 2015 08:35:55 GMT</pubDate>
    <dc:creator>stjernvd</dc:creator>
    <dc:date>2015-07-15T08:35:55Z</dc:date>
    <item>
      <title>Hide Text Box when Month AND Year are selected?</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872620#M993371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When the user selects a month and several years OR when the user selects a month and NO year is selected the graph looks like this:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Graph.PNG" class="jive-image image-2" height="293" src="https://community.qlik.com/legacyfs/online/92827_Graph.PNG" style="height: 293.354430379747px; width: 375px;" width="375" /&gt;&lt;IMG alt="list box.PNG" class="jive-image image-3" src="/legacyfs/online/92835_list box.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason being that you can't see results linearly from one month across several years.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to have a text box that tells the user that when they select just one month they must only select one year at a time, or when they select a month and no year is selected they must select a year (one at a time).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then when they have selected these two conditions, the text box should disappear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry if this is asking too much at once but would be so helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Danielle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 17:33:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872620#M993371</guid>
      <dc:creator>stjernvd</dc:creator>
      <dc:date>2015-07-14T17:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Text Box when Month AND Year are selected?</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872621#M993372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a text box with whatever you want your readers to see and conditionally show hide the text box with a condition like this may be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;not (GetSelectedCount(Month) = 1 and (&lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;STRONG&gt;GetSelectedCount(Year) &amp;gt; 1 or &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG style="text-decoration: line-through;"&gt;GetSelectedCount(Year) = 0))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;not (GetSelectedCount(Month) = 1 and GetSelectedCount(Year) = 1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: Attaching a sample&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 17:38:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872621#M993372</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-14T17:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Text Box when Month AND Year are selected?</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872622#M993373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If( GetSelectedCount( Month ) =1 and GetSelectedCount( Year ) &amp;lt;&amp;gt;1, 'Please select a single year')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the layout tab of the text box, use a conditional show:&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="font-size: 13.3333330154419px;"&gt;GetSelectedCount( Month ) =1 and GetSelectedCount( Year ) &amp;lt;&amp;gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;edit:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Of course, if you use a conditional show, you don't need the condition in the text expression.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 17:43:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872622#M993373</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-07-14T17:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Text Box when Month AND Year are selected?</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872623#M993374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 08:35:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872623#M993374</guid>
      <dc:creator>stjernvd</dc:creator>
      <dc:date>2015-07-15T08:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hide Text Box when Month AND Year are selected?</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872624#M993375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 08:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-Text-Box-when-Month-AND-Year-are-selected/m-p/872624#M993375</guid>
      <dc:creator>stjernvd</dc:creator>
      <dc:date>2015-07-15T08:35:55Z</dc:date>
    </item>
  </channel>
</rss>

