<?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 Single value in text in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532806#M108144</link>
    <description>&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;From sample table we want to display only product which is selected in sheet. We are using GetFieldSelections(Product) but it is displaying multiple product if we select multiple product instead we want to display only one product at a time in text box in sheet.&lt;/P&gt;&lt;P&gt;We do not want to use "Always one selected value" option for Product field.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MySalesData:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;OrderID, Product, Quantity, Price&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;101, "Laptop", 2, 1200&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;102, "Mouse", 5, 25&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;103, "Keyboard", 3, 75&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;104, "Monitor", 1, 300&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;105, "Webcam", 4, 50&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Oct 2025 05:26:55 GMT</pubDate>
    <dc:creator>Tool_Tip</dc:creator>
    <dc:date>2025-10-08T05:26:55Z</dc:date>
    <item>
      <title>Single value in text</title>
      <link>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532806#M108144</link>
      <description>&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;From sample table we want to display only product which is selected in sheet. We are using GetFieldSelections(Product) but it is displaying multiple product if we select multiple product instead we want to display only one product at a time in text box in sheet.&lt;/P&gt;&lt;P&gt;We do not want to use "Always one selected value" option for Product field.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;MySalesData:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;OrderID, Product, Quantity, Price&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;101, "Laptop", 2, 1200&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;102, "Mouse", 5, 25&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;103, "Keyboard", 3, 75&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;104, "Monitor", 1, 300&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;105, "Webcam", 4, 50&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;];&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 05:26:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532806#M108144</guid>
      <dc:creator>Tool_Tip</dc:creator>
      <dc:date>2025-10-08T05:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Single value in text</title>
      <link>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532819#M108145</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/300668"&gt;@Tool_Tip&lt;/a&gt;&amp;nbsp; , &lt;STRONG&gt;How do we determine which value to display when multiple selections are made?&lt;/STRONG&gt; We need to define the logic or rule that decides the priority or condition for display. Once that definition is clear, we can apply the same logic in our implementation.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 06:40:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532819#M108145</guid>
      <dc:creator>Amit_Prajapati</dc:creator>
      <dc:date>2025-10-08T06:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Single value in text</title>
      <link>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532833#M108146</link>
      <description>&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;For now lets consider, first value from multiple selection.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 08:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532833#M108146</guid>
      <dc:creator>Tool_Tip</dc:creator>
      <dc:date>2025-10-08T08:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Single value in text</title>
      <link>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532836#M108147</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/300668"&gt;@Tool_Tip&lt;/a&gt;&amp;nbsp; , You can use the following string function to achieve the desired result in this case.&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;SubField(GetFieldSelections(Name), ',', 1)&lt;/STRONG&gt;&lt;/FONT&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>Wed, 08 Oct 2025 08:47:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Single-value-in-text/m-p/2532836#M108147</guid>
      <dc:creator>Amit_Prajapati</dc:creator>
      <dc:date>2025-10-08T08:47:38Z</dc:date>
    </item>
  </channel>
</rss>

