<?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: Use field value in expression, without having it as dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896329#M658805</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In detail i need to check if a variable of an column matches a set of Field values to change a color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(match(mid(VALUE,1,6),total(FIELD_VALUES)),RGB(255,90,80))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;total is not working here!?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Apr 2015 15:51:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-04-23T15:51:33Z</dc:date>
    <item>
      <title>Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896327#M658803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Community,&lt;/P&gt;&lt;P&gt;how can i use a field value in an expression, without having it as dimension in straight table??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:43:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896327#M658803</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-23T15:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896328#M658804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TOTAL Qualifier... + Aggr Function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:46:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896328#M658804</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-04-23T15:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896329#M658805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In detail i need to check if a variable of an column matches a set of Field values to change a color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(match(mid(VALUE,1,6),total(FIELD_VALUES)),RGB(255,90,80))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;total is not working here!?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:51:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896329#M658805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-23T15:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896330#M658806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Theoretically, there is nothing to stop you from doing that. Practically, you need to know what to expect, logically. I'll give you two examples:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Chart per Product, when Color is an attribute of a Product. In this case, something like this is perfectly fine, because there is always only one Color per Product:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF(Color = 'Blue', ...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The same expression in a chart per Customer would return a NULL value because there are multiple Colors per Customer. In this case, you'd have to use AGGR to force the calculation at a different level of detail. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AGGR(&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF(Color = 'Blue', ...),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer, Color)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This calculate will be technically correct, because the Color will be unique within an AGGR that has the field Color as a Dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;&lt;P&gt;Come and learn AGGR and Set Analysis with me at the &lt;A href="http://www.masterssummit.com/"&gt;Masters Summit for QlikView&lt;/A&gt;!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:55:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896330#M658806</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2015-04-23T15:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896331#M658807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Need to understand where you have used this expression? What is the dimension and expression of chart?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:55:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896331#M658807</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-04-23T15:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896332#M658808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Straight table with dimension values A-C, one value C need to be highlighted if it matches a set of values of an dimension D that is not part of this table. So the expressions is inside Dimension C as background color expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:59:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896332#M658808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-23T15:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896333#M658809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think i am now really close to solve this problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get the multiple row values in one i use&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CONCAT(DISTINCT(chr(39)&amp;amp;FIELD_VALUES&amp;amp;chr(39)),', ')&lt;/STRONG&gt; =&amp;gt; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;As a result i get = &lt;STRONG&gt;'123, '234'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;When i use this result directly inside &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;if(match(mid(VALUE,1,6),&lt;SPAN style="text-decoration: underline;"&gt;'123, '234'&lt;/SPAN&gt;),RGB(255,90,80))&lt;/STRONG&gt; = &lt;STRONG&gt;It works&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;But when i use the function above that produces this result it does not work!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(match(mid(VALUE,1,6),&lt;SPAN style="text-decoration: underline;"&gt;(&lt;STRONG style="font-size: 13.3333330154419px;"&gt;CONCAT(DISTINCT(chr(39)&amp;amp;FIELD_VALUES&amp;amp;chr(39)),', ')&lt;/STRONG&gt;)&lt;/SPAN&gt;),RGB(255,90,80))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;What i am making wrong????&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 06:50:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896333#M658809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-24T06:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Use field value in expression, without having it as dimension</title>
      <link>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896334#M658810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if(match(mid(VALUE,1,6),$(=&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; text-decoration: underline;"&gt;(&lt;STRONG style="font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;CONCAT(DISTINCT(chr(39)&amp;amp;FIELD_VALUES&amp;amp;chr(39)),', ')&lt;/STRONG&gt;)&lt;/SPAN&gt;)),RGB(255,90,80))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 08:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-field-value-in-expression-without-having-it-as-dimension/m-p/896334#M658810</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-04-24T08:03:05Z</dc:date>
    </item>
  </channel>
</rss>

