<?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: Problem with expression labels in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326930#M500317</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried let instead of set but when I'm using let now it's not even showing me the variables vcountry also &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way to solve this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot Jonas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 May 2011 14:49:54 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-05-25T14:49:54Z</dc:date>
    <item>
      <title>Problem with expression labels</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326928#M500314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a data like this it's a world wide customer data of a company&lt;/P&gt;&lt;P&gt;I'm making a straight table based on customer countries and locations &lt;/P&gt;&lt;P&gt;I want separate label of country name for each colomm&lt;/P&gt;&lt;P&gt;When I'm trying to label my customer countries by using a set variable in script it's not showing any error and at the same time it's not giving me any output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression on script side is this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For a=1 to 40&lt;/P&gt;&lt;P&gt;Set vcountry $(a) = fieldvalue( 'Country' , $(a));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I'm trying to display labels with above variables it's not showing any data&lt;/P&gt;&lt;P&gt;Like vcountry1 = &lt;/P&gt;&lt;P&gt;Vcountry2 =&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So can u suggest me any way that I can label my each and every colomn using loops in scripting &lt;/P&gt;&lt;P&gt;Or is there any wrong in my script .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking u all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 13:39:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326928#M500314</guid>
      <dc:creator />
      <dc:date>2011-05-25T13:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression labels</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326929#M500315</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 this syntax. I believe you should use let instead of set:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Country&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DE&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DK&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FE&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt; &lt;BR /&gt;For a=1 to 4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let vcountry$(a) = fieldvalue( 'Country' , $(a));&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV class="mcePaste" id="_mcePaste" style="position: absolute; width: 1px; height: 1px; overflow: hidden; top: 0px; left: -10000px;"&gt;﻿&lt;/DIV&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonas&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.optivasys.se"&gt;www.optivasys.se&lt;/A&gt;&lt;/P&gt;&lt;P&gt;QlikView Consultant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 14:08:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326929#M500315</guid>
      <dc:creator />
      <dc:date>2011-05-25T14:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression labels</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326930#M500317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried let instead of set but when I'm using let now it's not even showing me the variables vcountry also &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way to solve this ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot Jonas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 14:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326930#M500317</guid>
      <dc:creator />
      <dc:date>2011-05-25T14:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression labels</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326931#M500318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the name as Column then just drag the dimension to top of the expression. It will serve your purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the attach application I have displayed both ways,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 17:05:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326931#M500318</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2011-05-25T17:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with expression labels</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326932#M500321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Deepak ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know we can do that in a pivot table but my req. is a straight table and i'm trying to write a loop for a runtime variable which stores those values in the specified colomn ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bradd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 May 2011 03:52:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-expression-labels/m-p/326932#M500321</guid>
      <dc:creator />
      <dc:date>2011-05-26T03:52:42Z</dc:date>
    </item>
  </channel>
</rss>

