<?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: Concat Issue in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076225#M359029</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Petter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2016 20:54:45 GMT</pubDate>
    <dc:creator>kishorj1982</dc:creator>
    <dc:date>2016-03-02T20:54:45Z</dc:date>
    <item>
      <title>Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076216#M359020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am selecting contains based on some specific conditions set as a part of button actions:&amp;nbsp; For that I am using Concat function :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='("' &amp;amp; concat(DISTINCT [Field], '"|"') &amp;amp; '")'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works fine in all the cases. But I have certain field values with&amp;nbsp; -&amp;nbsp; &lt;STRONG&gt;"&amp;nbsp; &lt;/STRONG&gt;character.&amp;nbsp; i.e. JT 6"&amp;nbsp;&amp;nbsp; OR Long 4"&amp;nbsp; &lt;/P&gt;&lt;P&gt;in this case it wont work. &lt;/P&gt;&lt;P&gt;can you please help me out to get the solution ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 15:40:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076216#M359020</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-02T15:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076217#M359021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had a similar issue and I created a Field_New which did not had any special character in them and use that for button action&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KeepChar(lower(Field), '1234567890abcdefghijklmnopqrstuvwxyz') as Field_New&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;='("' &amp;amp; concat(DISTINCT Field_New, '"|"') &amp;amp; '")'&lt;/STRONG&gt; as my action&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 15:47:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076217#M359021</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-02T15:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076218#M359022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It may be easier to use ascii codes for quotes rather than typing quotes in your expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(34) is a double quote&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; chr(39) is a single quote&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The replace will substitute ^ for each " in your Field, do the concat, then convert ^ back to ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;='(' &amp;amp; chr(34) &amp;amp; replace(concat(DISTINCT replace([Field], chr(34), '^'),&amp;nbsp; chr(39) &amp;amp; '|' &amp;amp; chr(39)), '^', chr(34) ), &amp;amp; chr(34) &amp;amp; ')'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 15:55:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076218#M359022</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2016-03-02T15:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076219#M359023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Colin. It works - I have also tried out in the Text object. But when I am using this Concat output to make the corresponding selections in List box, it's not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know what's wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 19:01:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076219#M359023</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-02T19:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076220#M359024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The &lt;STRONG&gt;inch symbol&lt;/STRONG&gt; which is normally always represented by &lt;STRONG&gt;double quotes&lt;/STRONG&gt; on a computer creates the problem. So you could replace it by either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A) Two single quotes ''&amp;nbsp; - look how identical they look!&amp;nbsp;&amp;nbsp; Here is " double quotes and here is '' single quotes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B) The REAL symbol for inch which is called &lt;STRONG&gt;double prime&lt;/STRONG&gt;: ″&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Notice that it is slightly slanted and in unicode it is character code 8243. In QlikView you can use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chr(8243) to get it in an expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With option A you will be able to do normal searches for the user also including inches but they have to remember to use two single quotes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With option B it is hard or almost impossible for interactive search including the double prime since it is not on any standard keyboard layout. However the users could use the wildcard ? instead of inch symbol (double prime).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some test data where you can see how the double quote could be replaced by the two alternatives and try it out with the three fields T, Tdoublesingle and Tprime. Then you can test for yourself how compound searches work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TestData:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; T,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Replace(T,Chr(34),Chr(39)&amp;amp;Chr(39)) AS Tdoublesingle&lt;/P&gt;&lt;P&gt;&amp;nbsp; Replace(T,Chr(34),&lt;SPAN style="font-size: 13.3333px;"&gt;Chr(8243)) AS Tprime&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;INLINE [&lt;/P&gt;&lt;P&gt;T&lt;/P&gt;&lt;P&gt;1.1" screws&lt;/P&gt;&lt;P&gt;3" nails&lt;/P&gt;&lt;P&gt;5.1" something&lt;/P&gt;&lt;P&gt;] ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 19:27:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076220#M359024</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-03-02T19:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076221#M359025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached Sample ... Actually I want to copy selections of field FILE from Table to List box - both are in separate state. For first time selection I am using Copy from State. But once use select at least 1 value of File in State A to State B,&amp;nbsp; the CONCAT option comes in the picture from Second Button ( Text object) . This is basically to accumulate the selections made by user - multiple times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above tips I have used but I am not successful when " comes in the selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 20:12:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076221#M359025</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-02T20:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076222#M359026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your inline table data is that the actual data that you get from somewhere? What is the source of this data - Excel sheets or databases or what?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 20:50:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076222#M359026</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-03-02T20:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076223#M359027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its from Database.&amp;nbsp; I have just posted sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 20:52:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076223#M359027</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-02T20:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076224#M359028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And the text data I see in the INLINE is exactly like you get it from the database?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 20:53:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076224#M359028</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-03-02T20:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076225#M359029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Petter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 20:54:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076225#M359029</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-02T20:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076226#M359030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This data is really messy. It is also double quotes that doesn't mean inches in there and a lot of single quotes too. You need to wash your data and it is more complicated than just a few lines of load script. For instance should the double quotes that means inches be preceded by numbers and if not they should be replaced by something else so you have a more complicated replace pattern...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 21:02:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076226#M359030</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-03-02T21:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076227#M359031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure how this is getting used, but won't the attached work for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 21:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076227#M359031</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-02T21:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076228#M359032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looking closer at your data it seems like this comes from a system that does it's own kind of quoting logic. So it seems like starting ending single quotes should be removed. And likewise starting and ending double quotes should be removed. And finally all double double-qutoes should be single doubles quotes. Only then can you apply the logic I explained to you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 21:17:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076228#M359032</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-03-02T21:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076229#M359033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny - Basically we dont want to change the look and fill of the original Field FILE.&amp;nbsp; We just want to copy the Field from one state to another as it is.&amp;nbsp; Please suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 22:05:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076229#M359033</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-02T22:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076230#M359034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like attached, getting rid of the compound search?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 22:12:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076230#M359034</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-03-02T22:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076231#M359035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure what the reluctance is. On the front end you would still be working with the FILE field. The only time you would use FILE_NEW is to do selections and copying things over etc (which won't even be visible to the users).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not saying this is the best way and knowing Petter and Stefan,&amp;nbsp; I am sure they will come up with much better ways to do it, but I think you can definitely explore the option I proposed and test it out a little more. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2016 22:27:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076231#M359035</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-02T22:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076232#M359036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/swuehl"&gt;swuehl&lt;/A&gt;‌&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Once again you NAILED it.&amp;nbsp; Your expression looks pretty simple and straightforward and moreover it has doesnt required the Data Manipulation.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks a Ton. Please suggest me how you develop the approach - what we should do extra to ramp up in terms of Qlik experties? &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hi Sunny&lt;/STRONG&gt; - Definitely&amp;nbsp; I will keep this in mind as well. Even if I am not using it now, its good to know the approach you suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hello - Colin and Petter,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Your suggestions are also valuable. Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 00:19:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076232#M359036</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-03T00:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076233#M359037</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;I have one more query - The Selections are now as per expectations from one state to another. But my Table chart is dynamic and based on the SLIDER object the expressions are controlled and so that the dimensions. I.e. if I have total 10 rows in the Table originally but my slider is set such a way that only 5 are visible. Hence only 5 dimensions are visible. Now if I am saying select All - its selecting all 10 Dimensions which doesnt make sense. If my slider allow me to see only 5 dimensions, then Select all should select only 5 dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest how we can pass the Dynamically controlled expressions(and hence dimensions) from 1 state to another? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 01:08:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076233#M359037</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-03-03T01:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Concat Issue</title>
      <link>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076234#M359038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Stefen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;last time you have provided the solution to the issue above where I wanted to add and append selected fields from one state to another. I have worked on the same lines to remove the selection from the another state with diff button action&lt;/P&gt;&lt;P&gt;It works fine in my application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it shows formula in the current selections instead of the actual selections. To get rid off it I have added one more button action - "Select Possible"&amp;nbsp; IN the intended field.&amp;nbsp; But its not giving correct results when I am removing selections from another button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know how to display the actual selections in the current selections box rather than Formula...that too without using the&amp;nbsp; SELECT POSSIBLE additional action ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is the sample accplication&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 17:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concat-Issue/m-p/1076234#M359038</guid>
      <dc:creator>kishorj1982</dc:creator>
      <dc:date>2016-04-06T17:24:36Z</dc:date>
    </item>
  </channel>
</rss>

