<?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: Need to combine two values from a field to a single value in the same field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998956#M82741</link>
    <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;Thanks for the response.&lt;/P&gt;
&lt;P&gt;but have a question what to provide in value column in first inline load.&lt;/P&gt;
&lt;P&gt;My compliance column contains values like&amp;nbsp;(Compliance, Not compliance, overall and so on.....) and against these I am showing count of machines in bar chart (expression)&lt;/P&gt;</description>
    <pubDate>Tue, 01 Nov 2022 10:10:31 GMT</pubDate>
    <dc:creator>abc_18</dc:creator>
    <dc:date>2022-11-01T10:10:31Z</dc:date>
    <item>
      <title>Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998694#M82717</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have a field say &lt;STRONG&gt;column&lt;/STRONG&gt; with values as:&lt;/P&gt;
&lt;P&gt;Column:&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;B&lt;/P&gt;
&lt;P&gt;C&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;
&lt;P&gt;E&lt;/P&gt;
&lt;P&gt;my requirement is to add two values together and make it as a single value in same column like below:&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;B+C as ' new name'&lt;/P&gt;
&lt;P&gt;C+D as 'new name1'&lt;/P&gt;
&lt;P&gt;E&lt;/P&gt;
&lt;P&gt;please let me know how to achieve this.&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 15:57:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998694#M82717</guid>
      <dc:creator>abc_18</dc:creator>
      <dc:date>2022-10-31T15:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998697#M82718</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Your not far from it already.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;A,&lt;/P&gt;
&lt;P&gt;B&amp;amp;C as ' new name',&lt;/P&gt;
&lt;P&gt;C&amp;amp;D as 'new name1',&lt;/P&gt;
&lt;P&gt;E,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From ...&lt;/P&gt;
&lt;P&gt;If they are numbers then you can use the + to sum them instead of the &amp;amp;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 16:01:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998697#M82718</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2022-10-31T16:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998857#M82722</link>
      <description>&lt;P&gt;best to Rangesum() to avoid issues with sum'ing null values&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Column:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;A&lt;/P&gt;
&lt;P&gt;,B&lt;/P&gt;
&lt;P&gt;,C&lt;/P&gt;
&lt;P&gt;,D&lt;/P&gt;
&lt;P&gt;,E&lt;/P&gt;
&lt;P&gt;,Rangesum(B,C) as newfield1&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;,Rangesum(C,D) as newfield2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;From SomeDataSource;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 02:48:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998857#M82722</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-11-01T02:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998929#M82738</link>
      <description>&lt;P&gt;Hello everyone, thanks for the response.&lt;/P&gt;
&lt;P&gt;I tried above but it's not working. may be the explanation was not clear.&lt;/P&gt;
&lt;P&gt;Actually have a compliance column in a table and need to add two values from compliance column to show the count .&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Compliance,&lt;/P&gt;
&lt;P&gt;OS,&lt;/P&gt;
&lt;P&gt;OS Type&lt;/P&gt;
&lt;P&gt;from xyz;&lt;/P&gt;
&lt;P&gt;in that Compliance column have these 6 values as A,B,C,D,E,F and need to show the combined count of B&amp;amp;C and E&amp;amp;F in a bar chart.&lt;/P&gt;
&lt;P&gt;I know how to combine two diff fields but my question is how to combine a field values to make&amp;nbsp; one value and show the count in bar chart like below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="abc_18_0-1667290095774.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/92578i7AF8F24E2BAEA429/image-size/medium?v=v2&amp;amp;px=400" role="button" title="abc_18_0-1667290095774.png" alt="abc_18_0-1667290095774.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 08:10:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998929#M82738</guid>
      <dc:creator>abc_18</dc:creator>
      <dc:date>2022-11-01T08:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998944#M82740</link>
      <description>&lt;P&gt;&lt;FONT size="4"&gt;&lt;STRONG&gt;create a new field which groups values as below&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Temp:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;Load * Inline [&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;ComplianceType,Value&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;A,10&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;B,10&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;C,10&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;D,10&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;E,10&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;F,10&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Grouping:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Load * inline [&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;ComplianceType,ComplianceGroup&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;A,A&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;B,B+C&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;C,B+C&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;D,D&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;E,E+F&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;F,E+F&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;Now use &lt;STRONG&gt;Dimension&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;&lt;STRONG&gt;=ComplianceGroup&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;&lt;STRONG&gt;Measure&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="4"&gt;&lt;SPAN&gt;&lt;STRONG&gt;=sum(Value)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 08:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998944#M82740</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-11-01T08:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998956#M82741</link>
      <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;Thanks for the response.&lt;/P&gt;
&lt;P&gt;but have a question what to provide in value column in first inline load.&lt;/P&gt;
&lt;P&gt;My compliance column contains values like&amp;nbsp;(Compliance, Not compliance, overall and so on.....) and against these I am showing count of machines in bar chart (expression)&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 10:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998956#M82741</guid>
      <dc:creator>abc_18</dc:creator>
      <dc:date>2022-11-01T10:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998981#M82743</link>
      <description>&lt;P&gt;&lt;STRONG&gt;whats important is the Grouping table&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Just make sure to group your dimension values correctly and Use the&amp;nbsp;&lt;STRONG&gt;ComplianceGroup field in your chart&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Your measures will automatically aggregate based in the grouped values&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Dimension:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;ComplianceGroup&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;Measure&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;=Count(Something)&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;Grouping:&lt;/P&gt;
&lt;P&gt;load * inline[&lt;/P&gt;
&lt;P&gt;Compliance,ComplianceGroup&lt;/P&gt;
&lt;P&gt;Compl,Compl&lt;/P&gt;
&lt;P&gt;NonCompl,NonCompl&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Compl&lt;/SPAN&gt;,&lt;SPAN&gt;Compl+NonCompl&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;NonCompl,Compl+NonCompl&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 10:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1998981#M82743</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-11-01T10:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999032#M82748</link>
      <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;For single compliance value, numbers are populating correctly like for 'A' and 'D' but for values where I am doing addition (grouping) it's&amp;nbsp; not working.&amp;nbsp;My measures is automatically aggregating only for single values but for group values it's just coming as unassigned data like '-' and there can see the remaining count.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 12:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999032#M82748</guid>
      <dc:creator>abc_18</dc:creator>
      <dc:date>2022-11-01T12:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999039#M82750</link>
      <description>&lt;P&gt;Can you post some screenshots of&amp;nbsp;&lt;SPAN&gt;Your data model&amp;nbsp; that shows association with the Inline table created for grouping&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also post all values in your compliance field and your script as to how you've grouped them in the Inline table&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your grouped values are not associated correctly that would &lt;STRONG&gt;only mean the values don't match in both the tables&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;For example a value "a" is not same as "A"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Th values must match exactly including spaces&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 12:36:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999039#M82750</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-11-01T12:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999189#M82759</link>
      <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;Yes, you are correct, there is data issue that's why the association isn't working.&lt;/P&gt;
&lt;P&gt;I looked through the data model and saw that we are giving new names to the values we are adding up, as shown by the bolded text, so that the new names can be seen in the bar chart.&lt;/P&gt;
&lt;P&gt;Below is the sample of Script from my app&lt;/P&gt;
&lt;P&gt;Grouping:&lt;/P&gt;
&lt;P&gt;load * inline[&lt;/P&gt;
&lt;P&gt;Compliance,ComplianceGroup&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;NonCompl&amp;nbsp;for XYZ&lt;/STRONG&gt;,Not approved to have XYZ+Have latest version of XYZ &lt;BR /&gt;&lt;STRONG&gt;NonCompl for ABC&lt;/STRONG&gt;,Machine to have data+Have latest version of ABC &lt;BR /&gt;Machine to have data , Machine to have data&lt;BR /&gt;Machine to have running , Machine to have running&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;];&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And in&amp;nbsp;Compliance column values are as below:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Compliance&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Not approved to have XYZ&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Have latest version of XYZ&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Machine to have data&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Have latest version of ABC&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; Machine to have running&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For values 'Machine to have data' and 'Machine to have running' association are working because they are linked but this not in the case where we are adding values.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you please suggest what can I change to make this work?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 17:57:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999189#M82759</guid>
      <dc:creator>abc_18</dc:creator>
      <dc:date>2022-11-01T17:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999308#M82761</link>
      <description>&lt;P&gt;as below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Load * Inline [&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Compliance,ComplianceGroup,ComplianceGroup_v2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF9900"&gt;&lt;SPAN&gt;Not approved to have XYZ,Not approved to have XYZ+Have latest version of XYZ,&lt;STRONG&gt;NonCompl&amp;nbsp;for XYZ&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF9900"&gt;&lt;SPAN&gt;Have latest version of XYZ,Not approved to have XYZ+Have latest version of XYZ,&lt;STRONG&gt;NonCompl&amp;nbsp;for XYZ&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Machine to have data,Machine to have data,Machine to have data&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF9900"&gt;&lt;SPAN&gt;Machine to have data,Machine to have data+Have latest version of ABC,&lt;STRONG&gt;NonCompl for ABC&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF9900"&gt;&lt;SPAN&gt;Have latest version of ABC,Machine to have data+Have latest version of ABC,&lt;STRONG&gt;NonCompl for ABC&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Machine to have running,Machine to have running,Machine to have running&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 02:12:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999308#M82761</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-11-02T02:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need to combine two values from a field to a single value in the same field</title>
      <link>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999400#M82771</link>
      <description>&lt;P&gt;Have used the above concept and it's working as expected.&lt;/P&gt;
&lt;P&gt;Thank you Vineeth for helping me fix this problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 07:47:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Need-to-combine-two-values-from-a-field-to-a-single-value-in-the/m-p/1999400#M82771</guid>
      <dc:creator>abc_18</dc:creator>
      <dc:date>2022-11-02T07:47:29Z</dc:date>
    </item>
  </channel>
</rss>

