<?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 Calculated colors in caption in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/204001#M61097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats it..thanks so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jun 2010 09:17:06 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-06-28T09:17:06Z</dc:date>
    <item>
      <title>Calculated colors in caption</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/203998#M61094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me out because i have this field that has three values and i want all caption to change colors for each value that they pick in the field but i cant seem to find the right formula because the normal if is only good for 2 colors like&lt;/P&gt;&lt;P&gt;if(GetFieldSelections([Field]) = 'A',RGB(0,0,0),RGB(255,255,255))&lt;/P&gt;&lt;P&gt;how can i make a three color if statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help would much be apreciated. ;)c&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 06:46:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/203998#M61094</guid>
      <dc:creator />
      <dc:date>2010-06-28T06:46:36Z</dc:date>
    </item>
    <item>
      <title>Calculated colors in caption</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/203999#M61095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as my understanding of your problem. You can write in this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(ID=1,rgb(55,255,255),&lt;BR /&gt;if(ID=2,rgb(255,25,205),&lt;BR /&gt;if(ID=3,rgb(2,55,255))))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 07:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/203999#M61095</guid>
      <dc:creator />
      <dc:date>2010-06-28T07:59:18Z</dc:date>
    </item>
    <item>
      <title>AW:Calculated colors in caption</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/204000#M61096</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 find a substring, so could help that function:&lt;/P&gt;&lt;H4 style="margin:auto 0cm;"&gt;index( &lt;I&gt;s1&lt;/I&gt; , &lt;I&gt;s2&lt;/I&gt; &lt;I&gt;[&lt;/I&gt; , &lt;I&gt;n&lt;/I&gt; &lt;I&gt;]&lt;/I&gt; )&lt;/H4&gt;&lt;P&gt;Position of a substring. This function gives the starting position of the &lt;I&gt;n&lt;/I&gt;:th occurrence of substring &lt;I&gt;s2&lt;/I&gt; in string &lt;I&gt;s1&lt;/I&gt;. If &lt;I&gt;n&lt;/I&gt; is omitted, the first occurrence is assumed. If &lt;I&gt;n&lt;/I&gt; is negative, the search is made starting from the end of string &lt;I&gt;s1&lt;/I&gt;. The result is an integer. The positions in the string are numbered from &lt;I&gt;1&lt;/I&gt; and up.&lt;/P&gt;&lt;H2 style="margin:auto 0cm;"&gt;Examples:&lt;/H2&gt;&lt;P style="margin-left:27.15pt;"&gt;&lt;B&gt;index( 'abcdefg', 'cd' )&lt;/B&gt; returns &lt;I&gt;3&lt;/I&gt;&lt;/P&gt;&lt;P style="margin-left:27.15pt;"&gt;&lt;B&gt;index( 'abcdabcd', 'b', 2 )&lt;/B&gt; returns &lt;I&gt;6&lt;/I&gt;&lt;/P&gt;&lt;P style="margin-left:27.15pt;"&gt;&lt;B&gt;index( 'abcdabcd', 'b', -2 )&lt;/B&gt; returns &lt;I&gt;2&lt;/I&gt;&lt;/P&gt;&lt;P style="margin-left:27.15pt;"&gt;&lt;B&gt;left( Date, index( Date,'-') -1 )&lt;/B&gt; where &lt;I&gt;Date&lt;/I&gt; = 1997-07-14 returns &lt;I&gt;1997&lt;/I&gt;&lt;/P&gt;&lt;P style="margin-left:27.15pt;"&gt;&lt;B&gt;mid( Date, index( Date, '-', 2 ) -2, 2 )&lt;/B&gt; where &lt;I&gt;Date&lt;/I&gt; = 1997-07-14 returns &lt;I&gt;07&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Hope, that's it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 08:14:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/204000#M61096</guid>
      <dc:creator>brenner_martina</dc:creator>
      <dc:date>2010-06-28T08:14:56Z</dc:date>
    </item>
    <item>
      <title>Calculated colors in caption</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/204001#M61097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats it..thanks so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2010 09:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-colors-in-caption/m-p/204001#M61097</guid>
      <dc:creator />
      <dc:date>2010-06-28T09:17:06Z</dc:date>
    </item>
  </channel>
</rss>

