<?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: Independent &amp;quot;Back Selection&amp;quot; functionality in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983017#M335479</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan,&lt;/P&gt;&lt;P&gt;Yes, in QV selections terms, "No Selections" = "All Selected". But I am using these selections to activate corresponding columns in a large straight table. So "No Selections" means no columns are visible. Selecting all items will force all columns in straight table to be displayed. Trying to avoid that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vladimir &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Oct 2015 14:36:30 GMT</pubDate>
    <dc:creator>vlad_komarov</dc:creator>
    <dc:date>2015-10-02T14:36:30Z</dc:date>
    <item>
      <title>Independent "Back Selection" functionality</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983014#M335476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;In my application I am doing some UI manipulations based on list of items selected in the list box.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I need to create a “Back Selection” functionality for this Field and this functionality should be independent from standard QV Back / Forward operations. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Seems like straightforward process: using “SelectinField” action with parameter of string constructed from items selected one step back.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: #000000;"&gt;I am using the a variable vBack&lt;/SPAN&gt; = &lt;SPAN style="color: black;"&gt; '(' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: blue;"&gt;Concat&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;({$1}&lt;/SPAN&gt;&lt;SPAN style="color: maroon;"&gt;[FIELD_1]&lt;/SPAN&gt;&lt;SPAN style="color: black;"&gt;, '|') &amp;amp;')' which gives me the proper sting in all cases except one: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: black;"&gt;It return ALL items listed in FIELD_1 when I am selecting any item first time the selection is made (after no selections were made). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: black;"&gt;I was trying to use GetFieldSelections() or GetSelectedCount(), but they do not have a SetAnalysis option for Previous step {$1}&lt;STRONG&gt;. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: black;"&gt;Any suggestions about how to handle this issue? &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: black;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="color: black;"&gt;Vladimir&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Oct 2015 20:10:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983014#M335476</guid>
      <dc:creator>vlad_komarov</dc:creator>
      <dc:date>2015-10-01T20:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Independent "Back Selection" functionality</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983015#M335477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;May be like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vBack&amp;nbsp; = If(GetSelectedCount([&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FIELD_1&lt;/SPAN&gt;])&amp;gt;0,'(' &amp;amp; Concat({$1}[&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FIELD_1&lt;/SPAN&gt;], '|') &amp;amp;')' ,'')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 03:09:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983015#M335477</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2015-10-02T03:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Independent "Back Selection" functionality</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983016#M335478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is that really a problem? Selecting all items is the same as selecting nothing (assuming no nulls). Is that not the correct 'back' state when you make your first selection?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 05:37:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983016#M335478</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-10-02T05:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Independent "Back Selection" functionality</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983017#M335479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan,&lt;/P&gt;&lt;P&gt;Yes, in QV selections terms, "No Selections" = "All Selected". But I am using these selections to activate corresponding columns in a large straight table. So "No Selections" means no columns are visible. Selecting all items will force all columns in straight table to be displayed. Trying to avoid that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vladimir &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 14:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983017#M335479</guid>
      <dc:creator>vlad_komarov</dc:creator>
      <dc:date>2015-10-02T14:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Independent "Back Selection" functionality</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983018#M335480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it sounds like what you want to do is make the coluns conditional.&amp;nbsp; You can use the conditional attribute on an expression or dimension - when you activate you would place the expression that you would want to column to appear.&amp;nbsp; If the expression is not satisfied, the dimsion or expression does not appear&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 15:44:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983018#M335480</guid>
      <dc:creator />
      <dc:date>2015-10-02T15:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Independent "Back Selection" functionality</title>
      <link>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983019#M335481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adam,&lt;/P&gt;&lt;P&gt;I am pretty familiar with "Conditional" option and how to show/hide individual column(s).&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;The question was about different thing - how to use List Box selections to activate this option in each column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Vladimir &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 18:04:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Independent-quot-Back-Selection-quot-functionality/m-p/983019#M335481</guid>
      <dc:creator>vlad_komarov</dc:creator>
      <dc:date>2015-10-02T18:04:47Z</dc:date>
    </item>
  </channel>
</rss>

