<?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: How to display field values in Texbox? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090829#M525619</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try Concat()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Concat(Distinct DimensionName,',')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; 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: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;Sameway if you just want selected values only then use&lt;/P&gt;&lt;P&gt; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;GetCurrentSelections(DimensionName,',', 1000)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jan 2016 03:04:08 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2016-01-29T03:04:08Z</dc:date>
    <item>
      <title>How to display field values in Texbox?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090827#M525616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to display field values in Texbox.&lt;/P&gt;&lt;P&gt;My req:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have table:&lt;/P&gt;&lt;P&gt;Name, Marks&lt;/P&gt;&lt;P&gt;A, 100&lt;/P&gt;&lt;P&gt;B,200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I have Texbox&lt;/P&gt;&lt;P&gt;Like &lt;/P&gt;&lt;P&gt;A texbox&lt;/P&gt;&lt;P&gt;B texbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Req 2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;I have table:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Name, Marks&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;A, 100&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;B,200&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;and I have Texbox&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Like &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;A texbox&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;B texbox&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;If i select any field in Listbox i need to&amp;nbsp; Name as "A "display respective Selection marks in Texbox.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Divya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2016 11:02:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090827#M525616</guid>
      <dc:creator />
      <dc:date>2016-01-28T11:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to display field values in Texbox?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090828#M525617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Do you want to display the Field value based on your selection? if so, you can do it in multiple ways..&lt;/P&gt;&lt;P&gt;May be try like in the Text Box,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(GetSelectedCount(Name)&amp;gt;0,Concat(Distinct Name,','),'Select Name')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Or&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if(GetSelectedCount(Name)&amp;gt;0,GetCurrentSelections(Name))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the sample&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ignore this, if this is not your requirement..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2016 02:52:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090828#M525617</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-01-29T02:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to display field values in Texbox?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090829#M525619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try Concat()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Concat(Distinct DimensionName,',')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; 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: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;Sameway if you just want selected values only then use&lt;/P&gt;&lt;P&gt; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;GetCurrentSelections(DimensionName,',', 1000)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2016 03:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090829#M525619</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-01-29T03:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to display field values in Texbox?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090830#M525621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the Attachment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2016 04:06:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-display-field-values-in-Texbox/m-p/1090830#M525621</guid>
      <dc:creator>rajeshforqlikvi</dc:creator>
      <dc:date>2016-01-29T04:06:20Z</dc:date>
    </item>
  </channel>
</rss>

