<?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: dynamic report dimension in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413372#M153792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My understanding is to isolate the words.&lt;/P&gt;&lt;P&gt;eg:if you choose 3 dimensions : customer, order, order date they will become with the pipe line :customr|order|order date.&lt;/P&gt;&lt;P&gt;hyperthetically, if you have a dimension called ror and you do not have the pipe line to separate them,&lt;/P&gt;&lt;P&gt;you will get&lt;/P&gt;&lt;P&gt;customrorderorder date &lt;/P&gt;&lt;P&gt;and the dimension ror will show even if you did not select.&lt;/P&gt;&lt;P&gt;just my 2 cents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Sep 2012 18:19:27 GMT</pubDate>
    <dc:creator>alexpanjhc</dc:creator>
    <dc:date>2012-09-18T18:19:27Z</dc:date>
    <item>
      <title>dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413367#M153787</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 am creating a dynamic report.&lt;/P&gt;&lt;P&gt;Everything looks fine except that when I have 2 similar columns , they show together even i only choose the longer name one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, in my inline load &lt;/P&gt;&lt;P&gt;dimension:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;INLINE&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _dimension,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dimension_type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CustomerID,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Customer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ......&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the list box, i will have the filed _dimensions to choose.&lt;/P&gt;&lt;P&gt;Everytime, I choose CustomerID, Customer also shows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my condition in dimension tab for the straight table &lt;/P&gt;&lt;P&gt;= SubStringCount (Concat (_dimension, '|'), 'CustomerID')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i only choose Cutomer, it is OK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I correct this problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 14:54:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413367#M153787</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2012-09-17T14:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413368#M153788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this condition for &lt;STRONG&gt;Customer &lt;/STRONG&gt;dimension (I prefer index to substring, that is not important):&lt;/P&gt;&lt;P&gt;=index(Concat (_dimension, '|'), &lt;STRONG&gt;'Customer'&lt;/STRONG&gt;)&amp;gt;0 AND index(Concat (_dimension, '|'), &lt;STRONG&gt;'CustomerID'&lt;/STRONG&gt;)=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 16:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413368#M153788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-17T16:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413369#M153789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;when I first chooe CustomerID, it only showed CustomerID---this is good, but when I also choose Customer, Customer does not show any more... looks like it is a conflicts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 17:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413369#M153789</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2012-09-17T17:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413370#M153790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see - the new problem apparently happens when you select both, and I think it works if you select any one of them.&lt;/P&gt;&lt;P&gt;The most relaible way is to change the value 'Customer' so it is &lt;STRONG&gt;not a substring &lt;/STRONG&gt;of 'CustomerID' or any other value, for example use 'Customer ' or 'Customer|'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2012 17:43:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413370#M153790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-17T17:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413371#M153791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can somebody kindly explain the exact purpose of the concatenation of the pipe symbol when using substringcount(). I successfully made a dynamic straight table using substringcount(concat(dim_id,'|'),'A')&amp;nbsp; but I don't understand the purpose of the '|'. I know that it works without it partially but not always. The help text for the function does not indicate why I need to combine a value with the pipe. Is it because substringcount needs more than one character to work ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 18:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413371#M153791</guid>
      <dc:creator />
      <dc:date>2012-09-18T18:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413372#M153792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My understanding is to isolate the words.&lt;/P&gt;&lt;P&gt;eg:if you choose 3 dimensions : customer, order, order date they will become with the pipe line :customr|order|order date.&lt;/P&gt;&lt;P&gt;hyperthetically, if you have a dimension called ror and you do not have the pipe line to separate them,&lt;/P&gt;&lt;P&gt;you will get&lt;/P&gt;&lt;P&gt;customrorderorder date &lt;/P&gt;&lt;P&gt;and the dimension ror will show even if you did not select.&lt;/P&gt;&lt;P&gt;just my 2 cents.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 18:19:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413372#M153792</guid>
      <dc:creator>alexpanjhc</dc:creator>
      <dc:date>2012-09-18T18:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic report dimension</title>
      <link>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413373#M153793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;alex - thanks that makes sense - appreciate your reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2012 18:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/dynamic-report-dimension/m-p/413373#M153793</guid>
      <dc:creator />
      <dc:date>2012-09-18T18:35:36Z</dc:date>
    </item>
  </channel>
</rss>

