<?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: How to add a calculated dimension to a chart from a VBScript macro ? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257729#M587182</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I'll have it in mind &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Jun 2011 10:40:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-06-02T10:40:08Z</dc:date>
    <item>
      <title>How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257724#M587177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;Hi all,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;I need to create a bunch of graphs and wanted to quickly write a little macro that would replicate the same layout for all the required graphs.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;So I started to write some lines of code but quickly hit a problem.&amp;nbsp; Here is the (simplified) code:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Function CreateGraphs()&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set chart = ActiveDocument.ActiveSheet.CreateLineChart&lt;/P&gt;&lt;P&gt;&amp;nbsp; chart.AddDimension "=IF([DeterminationCode]='XYZ', [SamplingTime])"&lt;/P&gt;&lt;P&gt;&amp;nbsp; chart.AddExpression "MeasurementValue"&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;For some reason, this line "chart.AddDimension" is silently ignored.&amp;nbsp; If I add the same calculated dimension interactively: no problem, all is working perfectly.&amp;nbsp; But I'm unable to reach the same result via the macro.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;It looks like this issue has already been raised in a &lt;A _jive_internal="true" href="https://community.qlik.com/message/30952#30952"&gt;previous post&lt;/A&gt; but I could find the right way to workaround the issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;Any suggestion to help me?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;Thanks a lot, have a great day.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;-- &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva; color: #333399;"&gt;Gaëtan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jun 2011 14:07:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257724#M587177</guid>
      <dc:creator />
      <dc:date>2011-06-01T14:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257725#M587178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaetan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as far i can see AddDimension with calculated dimension is not working on line/bar charts but works if pivot table is created. So my idea is macro first create pivot table with calculated dimension and then change the new created chart type to line chart. The folloing macro do the job:&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"&gt;&lt;P&gt;sub CreateGraphs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set chart = ActiveDocument.ActiveSheet.CreatePivotTable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set s=ActiveDocument.Sheets("Main")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' loop through all sheet objects to find the chart ID of the new created chart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for i=0 to s.NoOfSheetObjects-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;objid = s.SheetObjects(i).GetObjectId&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' filter only chart objects because we create chart &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if left(replace(objid,"Document\",""),2) = "CH" then&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; newchart = s.SheetObjects(i).GetObjectId&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; newchart = replace(newchart,"Document\","")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set linechart = ActiveDocument.GetSheetObject(newchart)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'add dimensions and expressions. At this point the chart is still pivot table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; linechart.AddDimension "=IF(Name='A','AA','Name')"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; linechart.AddExpression "count(id)"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'change the chart type to line chart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; linechart.SetChartType&amp;nbsp; 4&amp;nbsp;&amp;nbsp; ' line&lt;/P&gt;&lt;P&gt;End sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 05:14:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257725#M587178</guid>
      <dc:creator />
      <dc:date>2011-06-02T05:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257726#M587179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help, it indeed looks like a good idea but according to the first tests, I can add the calculated dimension to the pivot tabe (that's a first good news!) but the SetChartType operation does not work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Set chart = ActiveDocument.ActiveSheet.CreatePivotTable&lt;/P&gt;&lt;P&gt;chart.AddDimension "=IF([DeterminationCode]='XYZ', [SamplingTime])"&lt;/P&gt;&lt;P&gt;chart.AddExpression "MeasurementValue"&lt;/P&gt;&lt;P&gt;If chart.SetChartType(4) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp; MsgBox "ok"&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The message "ok" never appears and I see a pivot table with the correct dimension/expression.&amp;nbsp; If I then change the type "manually", it just works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can be wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 10:07:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257726#M587179</guid>
      <dc:creator />
      <dc:date>2011-06-02T10:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257727#M587180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaetan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which version of qv did you use? I'm working on v9 and the code works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 10:24:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257727#M587180</guid>
      <dc:creator />
      <dc:date>2011-06-02T10:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257728#M587181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got it to work...The trick is to add the calculated dimension to a pivot chart, then allow "fast change" to line chart before calling SetChartType. See code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the top Stefan, it really helped.&lt;/P&gt;&lt;P&gt;&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"&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Create new chart&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Note: adding calculated dimension does not work on line charts so let's start&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; with a pivot table and change the type later&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Set pchart = ActiveDocument.ActiveSheet.CreatePivotTable&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Get the object ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;pchartid = Replace(pchart.GetObjectId, "Document\", "")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Add calculated dimension&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;pchart.AddDimension "=IF([DeterminationCode]='XYZ', [SamplingTime])"&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Add expression&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;pchart.AddExpression "MeasurementValue"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Now switch to a "line chart" type; to do so, we first &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' need to allow "FastChange"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;set p = pchart.GetProperties&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;p.GraphLayout.FastChange.Line = true&lt;/P&gt;&lt;P&gt;pchart.SetProperties p&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Do change type to Line chart&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;pchart.SetChartType 4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Now retrieve the line chart object&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Set chart = ActiveDocument.GetSheetObject(pchartid)&lt;/P&gt;&lt;P&gt;Set p = chart.GetProperties&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Revert the "fastchange" trick to be able to change the type of the graph&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;p.GraphLayout.FastChange.Line = false&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' **&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' ** Do your own customization of the line chart object here **&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' **&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #339966;"&gt;' Apply your change&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;chart.SetProperties p&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 10:28:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257728#M587181</guid>
      <dc:creator />
      <dc:date>2011-06-02T10:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257729#M587182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I'll have it in mind &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 10:40:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257729#M587182</guid>
      <dc:creator />
      <dc:date>2011-06-02T10:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257730#M587183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Stefan Stoichev wrote:&lt;/P&gt;&lt;P&gt;which version of qv did you use? I'm working on v9 and the code works&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Indeed, I should have mentionned it : I'm using V10 SR2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, thanks for your precious help.&amp;nbsp; Now I'm looking for a solution to change the &lt;A _jive_internal="true" href="https://community.qlik.com/thread/14034"&gt;X-axis to a continous one&lt;/A&gt;, It does not look to be exposed in the API, ...? I may need to create a new thread about this one...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 07:35:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257730#M587183</guid>
      <dc:creator />
      <dc:date>2011-06-06T07:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257731#M587184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gaetan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i can see the how countinuos in the API&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 09:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257731#M587184</guid>
      <dc:creator />
      <dc:date>2011-06-06T09:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257732#M587185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stefan,&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Stefan Stoichev wrote: &lt;/P&gt;&lt;P&gt;and i can see the how countinuos in the API&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;What do you mean?&amp;nbsp; Do you know how to force a "continous X-axis" in a VBScript macro?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great evening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Gaëtan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 16:00:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257732#M587185</guid>
      <dc:creator />
      <dc:date>2011-06-06T16:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257733#M587186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Gaetan it was typo and i mean: can't&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2011 16:12:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257733#M587186</guid>
      <dc:creator />
      <dc:date>2011-06-06T16:12:47Z</dc:date>
    </item>
    <item>
      <title>How to add a calculated dimension to a chart from a VBScript macro ?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257734#M587187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help, I finally found it:&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote" style="background-color: #ffffff; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 2px; font-size: 12px; margin-top: 1em; margin-right: 2em; margin-bottom: 0.5em; margin-left: 2em; padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 1em; quotes: none; color: #333333; font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; white-space: normal; border-top-color: #eeeeee; border-right-color: #eeeeee; border-bottom-color: #eeeeee; border-left-color: #cccccc; overflow-x: auto; overflow-y: auto; background-position: repeat repeat; border-style: solid;"&gt;&lt;P&gt;chart.ChartProperties.NumericX = True&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Have a wonderful day.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jun 2011 15:25:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-add-a-calculated-dimension-to-a-chart-from-a-VBScript/m-p/257734#M587187</guid>
      <dc:creator />
      <dc:date>2011-06-09T15:25:29Z</dc:date>
    </item>
  </channel>
</rss>

