<?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 Get field value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272688#M102085</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;A quick question for you, I have a table of countries and one of the attributes is Region Code.&lt;/P&gt;&lt;P&gt;When the user selects a specific country, I would like to return the text from the region table (description).&lt;/P&gt;&lt;P&gt;I didn't bump in a function that receiving field value, a function like this would help in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll appreciate any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eliran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Aug 2011 12:59:24 GMT</pubDate>
    <dc:creator>eliran</dc:creator>
    <dc:date>2011-08-15T12:59:24Z</dc:date>
    <item>
      <title>Get field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272688#M102085</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;A quick question for you, I have a table of countries and one of the attributes is Region Code.&lt;/P&gt;&lt;P&gt;When the user selects a specific country, I would like to return the text from the region table (description).&lt;/P&gt;&lt;P&gt;I didn't bump in a function that receiving field value, a function like this would help in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll appreciate any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Eliran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 12:59:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272688#M102085</guid>
      <dc:creator>eliran</dc:creator>
      <dc:date>2011-08-15T12:59:24Z</dc:date>
    </item>
    <item>
      <title>Get field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272689#M102086</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;is it not possible to link the two tables with common field name (maybe Region Code)? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like &lt;/P&gt;&lt;P&gt;Table Country:&lt;/P&gt;&lt;P&gt;Country, RegionCode&lt;/P&gt;&lt;P&gt;USA, 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Region:&lt;/P&gt;&lt;P&gt;RegionCode, Desc&lt;/P&gt;&lt;P&gt;1, North America&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 13:05:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272689#M102086</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-08-15T13:05:02Z</dc:date>
    </item>
    <item>
      <title>Get field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272690#M102087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; hei &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assuming there is only one value after you selected the country&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can write this expression in the text box &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=only(region Description) that way when you wo'nt select a country it won't show anything&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if there is more than one value you can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=concat(region Description,',') that way it will show all the possible values in the field sperated by comma&lt;/P&gt;&lt;P&gt;hop its help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 13:08:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272690#M102087</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2011-08-15T13:08:29Z</dc:date>
    </item>
    <item>
      <title>Get field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272691#M102088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Liron,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I knew it was something easy.. &lt;/P&gt;&lt;P&gt;Only was what I was looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;swuehl, they are connected of course, I just forgot how to take out the string according to selection.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Eliran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2011 13:13:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-field-value/m-p/272691#M102088</guid>
      <dc:creator>eliran</dc:creator>
      <dc:date>2011-08-15T13:13:15Z</dc:date>
    </item>
  </channel>
</rss>

