<?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 Funnel chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574455#M1111276</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have 2 questions for you:&lt;/P&gt;&lt;P&gt;1. Why gradient colors in the funnel chart? Is it possible to use only solid colors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I have the funnel chart with fix sort&lt;/P&gt;&lt;P&gt;Match([qID_15876_Last step in cart],'Left in cart','Checkout','Personal info','Payment info','Reviewed, no confirm').&lt;/P&gt;&lt;P&gt;I'd like when I click on any segment, this segment keeps the same color and stay on the same place.&lt;/P&gt;&lt;P&gt;For example, if I click on the second segment from bottom, it keeps his color and stay on the same place, other segments will be colored grey color.&lt;/P&gt;&lt;P&gt;Please see my attached file.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Feb 2014 15:21:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-26T15:21:44Z</dc:date>
    <item>
      <title>Funnel chart</title>
      <link>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574455#M1111276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have 2 questions for you:&lt;/P&gt;&lt;P&gt;1. Why gradient colors in the funnel chart? Is it possible to use only solid colors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I have the funnel chart with fix sort&lt;/P&gt;&lt;P&gt;Match([qID_15876_Last step in cart],'Left in cart','Checkout','Personal info','Payment info','Reviewed, no confirm').&lt;/P&gt;&lt;P&gt;I'd like when I click on any segment, this segment keeps the same color and stay on the same place.&lt;/P&gt;&lt;P&gt;For example, if I click on the second segment from bottom, it keeps his color and stay on the same place, other segments will be colored grey color.&lt;/P&gt;&lt;P&gt;Please see my attached file.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 15:21:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574455#M1111276</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-26T15:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Funnel chart</title>
      <link>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574456#M1111277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. I don't believe so, that's how the chart is designed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Take a look at attached. You needed to ignore selections in your sort with {1}, so I added the function only(). For the colors, I used a pick(match()) instead of the if statements, but I did need one if to handle nulls when selection was made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Match(only({1}[qID_15876_Last step in cart]),'Left in cart','Checkout','Personal info','Payment info','Reviewed, no confirm')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Colors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if(Match([qID_15876_Last step in cart],'Left in cart','Checkout','Personal info','Payment info','Reviewed, no confirm'), &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;pick(Match([qID_15876_Last step in cart],'Left in cart','Checkout','Personal info','Payment info','Reviewed, no confirm'),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;rgb(255,181,128), rgb(255,151,77), rgb(255,113,13), rgb(217,97,11),rgb(179,85,18)),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;rgb(100,100,100))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 15:55:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574456#M1111277</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-02-26T15:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Funnel chart</title>
      <link>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574457#M1111278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually for colors, this formula is better:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(isnull([qID_15876_Last step in cart]), rgb(100,100,100),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pick(Match([qID_15876_Last step in cart],'Left in cart','Checkout','Personal info','Payment info','Reviewed, no confirm'),&lt;/P&gt;&lt;P&gt;rgb(255,181,128), rgb(255,151,77), rgb(255,113,13), rgb(217,97,11),rgb(179,85,18)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 15:57:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574457#M1111278</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-02-26T15:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Funnel chart</title>
      <link>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574458#M1111279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Jerem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Feb 2014 16:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Funnel-chart/m-p/574458#M1111279</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-26T16:01:57Z</dc:date>
    </item>
  </channel>
</rss>

