<?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: Qlikview show totals for dimensions in straight table activate per macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492134#M184007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need the object-typ to choose the right statement. Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13784678772925920" jivemacro_uid="_13784678772925920" modifiedtitle="true"&gt;
&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;if obj.GetObjectType = 10 then&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;set cp = chart.GetProperties&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;set dims = cp.Dimensions&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;dims(0).ShowPartialSums = false&amp;nbsp;&amp;nbsp;&amp;nbsp; 'do not show sums&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;else&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;set expr = cp.Expressions.Item(0).Item(0).Data.ExpressionData&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;expr.UsePartialSum = true&lt;/LI&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;end if&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see follow examples from APIGuide.qvw&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="_jivemacro_uid_13784680147245524 jive_text_macro jive_macro_code" jivemacro_uid="_13784680147245524" modifiedtitle="true"&gt;
&lt;P&gt;set chart = ActiveDocument.ActiveSheet.CreateStraightTable&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.AddDimension "Customer"&lt;/LI&gt;
&lt;LI&gt;chart.AddDimension "ProductType"&lt;/LI&gt;
&lt;LI&gt;chart.AddExpression "sum(Amount)"&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;set cp = chart.GetProperties&lt;/P&gt;
&lt;P&gt;set expr = cp.Expressions.Item(0).Item(0).Data.ExpressionData&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;expr.UsePartialSum = true&lt;/LI&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;set chart = ActiveDocument.Activesheet.CreatePivotTable&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.AddDimension "ProductType"&lt;/LI&gt;
&lt;LI&gt;chart.AddExpression "sum(Amount)"&lt;/LI&gt;
&lt;LI&gt;chart.AddExpression "count(Customer)"&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;set cp = chart.GetProperties&lt;/P&gt;
&lt;P&gt;set dims = cp.Dimensions&lt;/P&gt;
&lt;P&gt;dims(0).ShowPartialSums = false&amp;nbsp;&amp;nbsp;&amp;nbsp; 'do not show sums&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;rem&amp;nbsp; ** remove borders from all listboxes on active sheet **&lt;/P&gt;
&lt;P&gt;set x = ActiveDocument.ActiveSheet.GetSheetObjects&lt;/P&gt;
&lt;P&gt;Objects = x.SheetObjects&lt;/P&gt;
&lt;P&gt;For i = lBound(Objects) To uBound(Objects)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = Objects(i)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if obj.GetObjectType = 1 then&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'list boxes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set p = obj.GetProperties&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p.Layout.Frame.BorderEffect = 0&amp;nbsp; 'no border&lt;/P&gt;
&lt;P&gt; obj.SetProperties p&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;
&lt;P&gt;next&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Sep 2013 11:47:24 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2013-09-06T11:47:24Z</dc:date>
    <item>
      <title>Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492133#M184006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found this post where it is shown, how to activate subtotals in a pivot table. "Show partial sum"&lt;/P&gt;&lt;P&gt;This works really nice. &lt;A href="https://community.qlik.com/thread/55007"&gt;Show/Hide Subtotal in Pivot Table&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wasn't able to find in API or here in forum any setting, how to activate this setting when a pivot table is switched into straight table. this is called "Show totals".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've prepared an example, if you have time to check it out ... I'm sure this is only one additional line starting with something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dims(i). ...... show totals ...... = true&amp;nbsp; but I can not find it anywhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for any hints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 06:50:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492133#M184006</guid>
      <dc:creator />
      <dc:date>2013-09-06T06:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492134#M184007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need the object-typ to choose the right statement. Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13784678772925920" jivemacro_uid="_13784678772925920" modifiedtitle="true"&gt;
&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;if obj.GetObjectType = 10 then&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;set cp = chart.GetProperties&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;set dims = cp.Dimensions&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;dims(0).ShowPartialSums = false&amp;nbsp;&amp;nbsp;&amp;nbsp; 'do not show sums&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;else&lt;/P&gt;
&lt;P style="text-indent: 35.4pt;"&gt;set expr = cp.Expressions.Item(0).Item(0).Data.ExpressionData&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;expr.UsePartialSum = true&lt;/LI&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;end if&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and see follow examples from APIGuide.qvw&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="_jivemacro_uid_13784680147245524 jive_text_macro jive_macro_code" jivemacro_uid="_13784680147245524" modifiedtitle="true"&gt;
&lt;P&gt;set chart = ActiveDocument.ActiveSheet.CreateStraightTable&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.AddDimension "Customer"&lt;/LI&gt;
&lt;LI&gt;chart.AddDimension "ProductType"&lt;/LI&gt;
&lt;LI&gt;chart.AddExpression "sum(Amount)"&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;set cp = chart.GetProperties&lt;/P&gt;
&lt;P&gt;set expr = cp.Expressions.Item(0).Item(0).Data.ExpressionData&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;expr.UsePartialSum = true&lt;/LI&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;set chart = ActiveDocument.Activesheet.CreatePivotTable&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.AddDimension "ProductType"&lt;/LI&gt;
&lt;LI&gt;chart.AddExpression "sum(Amount)"&lt;/LI&gt;
&lt;LI&gt;chart.AddExpression "count(Customer)"&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;set cp = chart.GetProperties&lt;/P&gt;
&lt;P&gt;set dims = cp.Dimensions&lt;/P&gt;
&lt;P&gt;dims(0).ShowPartialSums = false&amp;nbsp;&amp;nbsp;&amp;nbsp; 'do not show sums&lt;/P&gt;
&lt;OL style="list-style-type: lower-alpha;"&gt;
&lt;LI&gt;chart.SetProperties cp&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;rem&amp;nbsp; ** remove borders from all listboxes on active sheet **&lt;/P&gt;
&lt;P&gt;set x = ActiveDocument.ActiveSheet.GetSheetObjects&lt;/P&gt;
&lt;P&gt;Objects = x.SheetObjects&lt;/P&gt;
&lt;P&gt;For i = lBound(Objects) To uBound(Objects)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = Objects(i)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if obj.GetObjectType = 1 then&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'list boxes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set p = obj.GetProperties&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; p.Layout.Frame.BorderEffect = 0&amp;nbsp; 'no border&lt;/P&gt;
&lt;P&gt; obj.SetProperties p&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;
&lt;P&gt;next&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 11:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492134#M184007</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-09-06T11:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492135#M184008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nice of you, thanks for the reply. I found almost all of the documentation in API. However what I'm searching for is to activate following checkbox. Show total for DIMENSIONS (not for expressions). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so therefore I do not need Data.ExpressionData but "Dimension.Number.ShowTotal = True" or something like this in order to display, like in pivot, subtotals for each dimension, not the whole sum for each key figure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="subtotals straight table.JPG.jpg" class="jive-image" src="/legacyfs/online/46555_subtotals straight table.JPG.jpg" style="width: 620px; height: 366px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 09:04:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492135#M184008</guid>
      <dc:creator />
      <dc:date>2013-09-16T09:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492136#M184009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try some parts from here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set chart = ActiveDocument.Activesheet.CreateStraightTable&lt;/P&gt;&lt;P&gt;chart.AddDimension "Product"&lt;/P&gt;&lt;P&gt;chart.AddExpression "sum(Amount)"&lt;/P&gt;&lt;P&gt;set gp = chart.GetProperties&lt;/P&gt;&lt;P&gt;set tp = gp.TableProperties&lt;/P&gt;&lt;P&gt;tp.MaxNumberShown = 2&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; 'limit rows shown&lt;/P&gt;&lt;P&gt;tp.StraightShowOthers = true&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'show others row&lt;/P&gt;&lt;P&gt;gp.GraphLayout.OtherString.v = "Other products"&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label for others row&lt;/P&gt;&lt;P&gt;tp.StraightTotalPosition = 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'last row&lt;/P&gt;&lt;P&gt;tp.UseTotalLabelForStraight = true&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'use total label&lt;/P&gt;&lt;P&gt;set e0 = gp.ExpressionDatas(0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'first expression&lt;/P&gt;&lt;P&gt;e0.BrutalSum = true&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; 'sum of rows&lt;/P&gt;&lt;P&gt;chart.SetProperties gp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 11:17:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492136#M184009</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-09-16T11:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492137#M184010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;command "usetotallabelforstraight" sounds good, but this will fail in my case. I think the macro line should start with dims(i). ..... totals ....... and end with = true.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 12:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492137#M184010</guid>
      <dc:creator />
      <dc:date>2013-09-16T12:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492138#M184011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set e0 = gp.ExpressionDatas(0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'first expression&lt;/P&gt;&lt;P&gt;e0.BrutalSum = true&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; 'sum of rows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 12:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492138#M184011</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2013-09-16T12:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492139#M184012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will activate totals for each key figure, not for each dimension group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you anyway&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 12:56:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492139#M184012</guid>
      <dc:creator />
      <dc:date>2013-09-16T12:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492140#M184013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stan,&lt;/P&gt;&lt;P&gt;This is a bit rudimentary, but you might consider just creating a second chart without the partial sums which is hidden until a setting is changed.&amp;nbsp; The setting change can be a variable (slider object) or an island field (always one selected value).&lt;/P&gt;&lt;P&gt;Attached is an example of using a field selection to hide/show the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 13:16:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492140#M184013</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2013-09-26T13:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492141#M184014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indeed, Tyler, rudimentary, nice and working. However ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to build up an adhoc reporting (you name it Reports in What's new in QlikView 11.qvw) and what a pitty, it is not possible to identify if user wants or not subtotals and for which element in a row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise there would me so many versions of tables around.&lt;/P&gt;&lt;P&gt;Thanks anyway.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 14:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492141#M184014</guid>
      <dc:creator />
      <dc:date>2013-09-26T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492142#M184015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I have explored a few options to get this type of customization for users you are describing.&lt;/P&gt;&lt;P&gt;You can extend that field selection approach to set the hide/show of a specific column or expression.&amp;nbsp; Again, rudimentary, but might do the trick.&lt;/P&gt;&lt;P&gt;See attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 15:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492142#M184015</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2013-09-26T15:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492143#M184016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyler, this selection is nice and works again fine. Maybe I didn't express myself correct, sorry for that. With subtotals I mean sum after each end of dimension group, not just a sum for the whole keyfigure. Please have a look at the screen shot. This trick does in pivot table do subtotals (Presentation - Subtotals at top/bottom) and in straight table (Dimension Limits - Show Total).&lt;IMG __jive_id="46976" alt="subtotals straight table new.JPG.jpg" class="jive-image" src="/legacyfs/online/46976_subtotals straight table new.JPG.jpg" style="width: 620px; height: 442px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Sep 2013 06:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492143#M184016</guid>
      <dc:creator />
      <dc:date>2013-09-27T06:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492144#M184017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you do the same thing with hide/show but just have the specific charts showing --- the subtotals?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Sep 2013 14:09:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492144#M184017</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2013-09-27T14:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492145#M184018</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;you can use this one:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;sub xxx&lt;BR /&gt; &lt;BR /&gt; set chart = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt; set cp = chart.GetProperties&lt;BR /&gt; set dims = cp.Dimensions&lt;BR /&gt; 'dims(0).TotalString.v = "xyz"&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: red;"&gt;dims(0).OtherTotalSpec.TotalMode = 1 '1 = on, 0 = off&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt; chart.SetProperties cp&lt;BR /&gt; &lt;BR /&gt;end sub &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-size: 9.0pt; font-family: 'Courier New'; color: black;"&gt;Martin&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Oct 2013 10:12:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492145#M184018</guid>
      <dc:creator />
      <dc:date>2013-10-07T10:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492146#M184019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stan,&lt;/P&gt;&lt;P&gt;There is a new Demo app on the QlikView site that has a "Build your own chart" setup that might be interesting to you. You can find the "Call Detail Record Analysis" app here: &lt;SPAN style="font-size: 9.0pt; font-family: 'Arial','sans-serif'; color: #222222;"&gt;&lt;A href="http://us.demo.qlik.com/detail.aspx?appName=Call%20Detail%20Record%20Analysis.qvw"&gt;http://us.demo.qlik.com/detail.aspx?appName=Call%20Detail%20Record%20Analysis.qvw&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look on the "Report" tab. Just another idea.&lt;/P&gt;&lt;P&gt;Tyler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Oct 2013 12:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492146#M184019</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2013-10-07T12:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492147#M184020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is what I was looking for.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="color: red; font-family: 'Courier New'; font-size: 9pt;"&gt;dims(0).OtherTotalSpec.TotalMode = 1&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="color: red; font-family: 'Courier New'; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="color: red; font-family: 'Courier New'; font-size: 9pt;"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 06:17:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492147#M184020</guid>
      <dc:creator />
      <dc:date>2013-10-08T06:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492148#M184021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Tyler, this application is really nice. The Report tab is nothing such a pretty new. I saw those in many other qvw demos as well. The question is, if such a report tab will be implemented, how would you let the web (portal, ajax, iis, plugin, small device or whatever) report consumer activate or deactivate subtotals for chosen characteristics?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just with tricks, define new table and hide or unhide those is with possible combinations nothing practicable.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="subtotal web.JPG.jpg" class="jive-image" src="/legacyfs/online/47310_subtotal web.JPG.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 06:39:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492148#M184021</guid>
      <dc:creator />
      <dc:date>2013-10-08T06:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492149#M184022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tyler, if you are so curious, have a look on my post. Maybe you could contribute to improvements for all QlikView users.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/384878"&gt;Adhoc reporting with QlikView, cyclic groups, order and subtotals issue&lt;/A&gt; &lt;/P&gt;&lt;P&gt;When will be released the newest Governance Dashboard?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 11:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492149#M184022</guid>
      <dc:creator />
      <dc:date>2013-10-11T11:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview show totals for dimensions in straight table activate per macro</title>
      <link>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492150#M184023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Stan for sharing this. Yes, I have felt the need for easier customization on front-end QlikView applications.&amp;nbsp; Don't give up hope on QlikView, though!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We do not have a published release date for the 1.1 Governance Dashboard, though we are targeting Q4 (calendar). Sorry I can't be more specific yet, except that there will be a lot of great improvements in the 1.1 version!&lt;/P&gt;&lt;P&gt;Tyler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Oct 2013 13:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlikview-show-totals-for-dimensions-in-straight-table-activate/m-p/492150#M184023</guid>
      <dc:creator>Tyler_Waterfall</dc:creator>
      <dc:date>2013-10-11T13:37:48Z</dc:date>
    </item>
  </channel>
</rss>

