<?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: Fast Change in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492572#M184233</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I ran into the exact same problem. Instead of this code: =SubStringCount(Concat(Dimension, '|'), 'Underwriter'), you could use this code instead for your conditional expression:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;SPAN style="color: #0000ff;"&gt;GetFieldSelections&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Dimension&lt;/SPAN&gt;) = 'ALL' &lt;SPAN style="color: #0000ff;"&gt;or&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;Index&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;GetFieldSelections&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;Dimension&lt;/SPAN&gt;, '|'), 'Underwriter') &amp;gt; 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The GetFieldSelections(Dimension, '|') function will build a list of bar separated selections from the Dimension field with one caveat - when EVERY field is selected in Dimension, GetFieldSelections(Dimension) returns 'ALL'.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If you still run into selections like 'Underwriter' and 'Underwriter to Sector' not working because 'Underwriter' appears in both, you can work around this by changing one of the values slightly, remembering that QlikView is case-sensitive which means 'UnderWriter' or 'Under writer' is not the same as 'Underwriter'.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In my case, I had 'Age' and 'Age Group' as dimensions, and selecting 'Age Group' also caused 'Age' to display - I overcame it by changing 'Age' to 'AGE' - problem solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also want to add a Calculation Condition on the General tab of the chart similar to this:&lt;/P&gt;&lt;P&gt;GetSelectedCount(Dimension) &amp;gt; 0 to prevent the chart from displaying when no dimensions are chosen.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jan 2014 14:57:14 GMT</pubDate>
    <dc:creator>m2r4miller</dc:creator>
    <dc:date>2014-01-15T14:57:14Z</dc:date>
    <item>
      <title>Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492552#M184213</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;I have created an Inline function &lt;/P&gt;&lt;P&gt;Load * Inline [&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Underwriter&lt;/P&gt;&lt;P&gt;Underwriter To Sector&lt;/P&gt;&lt;P&gt;Trade Sector&lt;/P&gt;&lt;P&gt;SecToUnd&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using this in a chart conditionally. When i select Underwriter, dimension of the chart should be Underwriter.&lt;/P&gt;&lt;P&gt;When i select 'Underwriter to Sector' it should select a drill down dimension i.e 'Underwriter to Sector'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used &lt;STRONG&gt; =SubStringCount(Concat(Dimension, '|'), 'Underwriter') for &lt;/STRONG&gt;Underwriter&lt;/P&gt;&lt;P&gt;and&lt;STRONG&gt; =SubStringCount(Concat(Dimension, '|'), 'Underwriter to Sector') &lt;/STRONG&gt;for Underwriter to Sector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But its not coming properly. I know the reason this is because of the substringcount considers underwriter in both the cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me how to solve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached the QVW. Please look into it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 07:07:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492552#M184213</guid>
      <dc:creator />
      <dc:date>2014-01-10T07:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492553#M184214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding an extra character like a @ to the values:&lt;/P&gt;&lt;P&gt;=SubStringCount(Concat(Dimension &amp;amp; '@', '|'), 'Underwriter@')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 07:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492553#M184214</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-01-10T07:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492554#M184215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Gysbert.&lt;/P&gt;&lt;P&gt;But it looks odd in the front end displaying &lt;STRONG&gt;Underwriter@&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 07:21:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492554#M184215</guid>
      <dc:creator />
      <dc:date>2014-01-10T07:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492555#M184216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gybert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying this script but Output Not exactly,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dev01:&lt;/P&gt;&lt;P&gt;Load * Inline &lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Dimension&lt;/P&gt;&lt;P&gt;Underwriter&lt;/P&gt;&lt;P&gt;Underwriter To Sector&lt;/P&gt;&lt;P&gt;Trade Sector&lt;/P&gt;&lt;P&gt;SecToUnd&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD SubStringCount(Concat(Dimension &amp;amp; '@', '|'), 'Underwriter') as Underwriter Resident Dev01;&lt;/P&gt;&lt;P&gt;load SubStringCount(Concat(Dimension &amp;amp; '@', '|'), 'Underwriter To Sector') as Underwriter_To_Sector Resident Dev01;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 07:28:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492555#M184216</guid>
      <dc:creator />
      <dc:date>2014-01-10T07:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492556#M184217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this but nothing has changed &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 08:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492556#M184217</guid>
      <dc:creator />
      <dc:date>2014-01-10T08:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492557#M184218</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;Check this link hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5404"&gt;Adhoc reporting in Qlikview&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 09:05:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492557#M184218</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-10T09:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492558#M184219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is when i have sub string names common. Here one is underwriter and Underwriter to Sector.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i select underwriter to sector. Underwriter dimension is selected twice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should not happen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 09:16:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492558#M184219</guid>
      <dc:creator />
      <dc:date>2014-01-10T09:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492559#M184220</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;Use expression like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=SubStringCount('|' &amp;amp; Concat(distinct Dimension, '|') &amp;amp; '|', '|&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;underwriter &lt;/SPAN&gt;|')&lt;/P&gt;&lt;P&gt;=SubStringCount('|' &amp;amp; Concat(distinct Dimension, '|') &amp;amp; '|', '|&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Underwriter to Sector&lt;/SPAN&gt;|')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 09:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492559#M184220</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-10T09:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492560#M184221</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;I use space in front, check attached app, it may help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;NR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 10:24:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492560#M184221</guid>
      <dc:creator />
      <dc:date>2014-01-10T10:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492561#M184222</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;try to put a doublequote around your dimensions in the inline table: "Underwriter To Sector" ex&lt;/P&gt;&lt;P&gt;//Staffan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 10:33:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492561#M184222</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2014-01-10T10:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492562#M184223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=SubStringCount(Concat(Dimension &amp;amp; '@', '|'), 'Underwriter@')&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Keerthi K S wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks Gysbert.&lt;/P&gt;
&lt;P&gt;But it looks odd in the front end displaying &lt;STRONG&gt;Underwriter@&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just add a PurgeChar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=PurgeChar(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SubStringCount(Concat(Dimension &amp;amp; '@', '|'), 'Underwriter@')&lt;/SPAN&gt;, '@')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 10:51:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492562#M184223</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-01-10T10:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492563#M184224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not working in my case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 11:44:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492563#M184224</guid>
      <dc:creator />
      <dc:date>2014-01-10T11:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492564#M184225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this but its the same. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 11:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492564#M184225</guid>
      <dc:creator />
      <dc:date>2014-01-10T11:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492565#M184226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its still not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 11:48:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492565#M184226</guid>
      <dc:creator />
      <dc:date>2014-01-10T11:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492566#M184227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Is it working if you remove your drill down dimensions? And remember the spelling inside the Enable Conditional.&lt;/P&gt;&lt;P&gt;//Staffan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 11:55:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492566#M184227</guid>
      <dc:creator>stabben23</dc:creator>
      <dc:date>2014-01-10T11:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492567#M184228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed the inline function with double quotes and also in the ENABLE CONDITIONAL. &lt;/P&gt;&lt;P&gt;But still its not working. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For drill down its coming only with Trade Sector. Underwriter is not coming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 12:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492567#M184228</guid>
      <dc:creator />
      <dc:date>2014-01-10T12:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492568#M184229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keerthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working but the Drilldown Group icon is not displaying, since you have the same columns in the Group and Dimension you are not able to identify the column changes.&amp;nbsp; May be this is a bug.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 12:22:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492568#M184229</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-10T12:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492569#M184230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u please attach the qvw. I will look into it.&lt;/P&gt;&lt;P&gt;That is fine i dont want icon to be displayed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 12:27:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492569#M184230</guid>
      <dc:creator />
      <dc:date>2014-01-10T12:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492570#M184231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The idea is to add the @ only in the substringcount expression. The actual values in the Dimension field are not changed. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jan 2014 14:34:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492570#M184231</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-01-10T14:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fast Change</title>
      <link>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492571#M184232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried using &lt;STRONG&gt;@Underwriter to Sector&lt;/STRONG&gt; but there is another Field Sector .... When i used &lt;STRONG&gt;@Underwriter to Sector&lt;/STRONG&gt;, both Underwriter to Sector drill down and also sector is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jan 2014 05:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fast-Change/m-p/492571#M184232</guid>
      <dc:creator />
      <dc:date>2014-01-13T05:20:46Z</dc:date>
    </item>
  </channel>
</rss>

