<?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: scroll cursor on the right of a chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59430#M772811</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry&amp;nbsp; it might be a stupid question but where do i Put this formula exactly ? &lt;/P&gt;&lt;P&gt;In the script ?&lt;/P&gt;&lt;P&gt;In the Tool/Module ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 May 2018 08:21:58 GMT</pubDate>
    <dc:creator>lessassy</dc:creator>
    <dc:date>2018-05-22T08:21:58Z</dc:date>
    <item>
      <title>scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59427#M772808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a simple question to ask&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="202817" alt="scroll right.PNG" class="jive-image image-1" src="/legacyfs/online/202817_scroll right.PNG" style="height: 171px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;I want to put the scroll button on the right of the chart just like in the picture.&lt;/P&gt;&lt;P&gt;Is it possible to do it ?&lt;/P&gt;&lt;P&gt;Thanks a lot for answering&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59427#M772808</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59428#M772809</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 think there is no direct way to do it&amp;nbsp;&amp;nbsp; here some workaround given go through it might help you&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/263686"&gt;Scroll bar in bar chart&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2018 16:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59428#M772809</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2018-05-18T16:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59429#M772810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This can be done with a macro:&lt;/P&gt;&lt;P&gt;sub ChartXScrollInitRight&lt;/P&gt;&lt;P&gt;stop&lt;/P&gt;&lt;P&gt;s=ActiveDocument.NoOfSheets for i = 0 to s-1&lt;/P&gt;&lt;P&gt;set s=ActiveDocument.Sheets(i)&lt;/P&gt;&lt;P&gt;objs=s.GetSheetObjects&lt;/P&gt;&lt;P&gt;for j=lbound(objs) to ubound(objs)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; strCHID = objs(j).GetObjectID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; strSearch = "CH28,CH29,CH30,CH61,CH59,CH57,CH62,CH65,CH66,CH67,CH68,CH69,CH130"&amp;nbsp;&amp;nbsp; 'List of charts&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; intFound =&amp;nbsp; instr(strSearch,mid(strCHID,10,5))&lt;/P&gt;&lt;P&gt;if intFound &amp;gt; 0 then&lt;/P&gt;&lt;P&gt;Set rep = ActiveDocument.GetSheetObject(strCHID)&lt;/P&gt;&lt;P&gt;set p = rep.GetProperties&lt;/P&gt;&lt;P&gt;p.ChartProperties.XScrollInitRight = True&lt;/P&gt;&lt;P&gt;rep.SetProperties p&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2018 17:02:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59429#M772810</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-05-18T17:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59430#M772811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry&amp;nbsp; it might be a stupid question but where do i Put this formula exactly ? &lt;/P&gt;&lt;P&gt;In the script ?&lt;/P&gt;&lt;P&gt;In the Tool/Module ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 08:21:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59430#M772811</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-22T08:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59431#M772812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 10:14:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59431#M772812</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-05-22T10:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59432#M772813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried but I Got a message error.&lt;/P&gt;&lt;P&gt;The module underline the line s=ActiveDocument.NoOfSheets for i = 0 to s-1. before display the error.&lt;/P&gt;&lt;P&gt;Also i wanted to know if there are any other area where it's false.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Macro Fail.PNG" class="jive-image image-1" src="/legacyfs/online/203083_Macro Fail.PNG" style="height: 372px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 14:58:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59432#M772813</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-22T14:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59433#M772814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not familiar with these kind of macro.&lt;/P&gt;&lt;P&gt;Sorry i'm new.&lt;/P&gt;&lt;P&gt;So&amp;nbsp; i know i made several mistake on the code.&lt;/P&gt;&lt;P&gt;It would be nice if you underlight the exact sentence i should put.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for instance :&lt;/P&gt;&lt;P&gt;chart=ActiveDocument.NoOfSheets for i = 0 to s-1 : DO i Have to put the number of charts i have in my tab&lt;/P&gt;&lt;P&gt;The same apply to the over lines&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 15:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59433#M772814</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-22T15:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59434#M772815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also found this macro nline :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO this also work for my case ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Sub SetScrollRight&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;set chart1 = ActiveDocument.GetSheetObject("CH13")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;set p1 = chart1.GetProperties&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;p1.ChartProperties.XScrollInitRight = true&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;chart1.SetProperties p1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;End sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;But what I don't know it's that if the name "chart 1" is the name of the chart or it's just a random name given. Because i tried with this one and a message erro appeared, saying that they could not found chart 1.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 15:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59434#M772815</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-22T15:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59435#M772816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This macro is looking for a chart with the Object ID = CH13.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put the Object ID of you chart in place of CH13 and this macro should work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 May 2018 15:15:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59435#M772816</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-05-22T15:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59436#M772817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well i tried and it's not working either.&lt;/P&gt;&lt;P&gt;I will put your formula instead but i need few informations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;This can be done with a macro:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sub ChartXScrollInitRight&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;stop&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;s=ActiveDocument.NoOfSheets for i = 0 to s-1 --&amp;gt;&lt;STRONG&gt; Do I replace 0 by the first chart (ag: CH01) and s-1 to the last chart (example: CH17)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;set s=ActiveDocument.Sheets(i) I&lt;STRONG&gt;nstead of i do I put all the chart i want the macro to active. For instance i have 2 chart (1, 2 and 3) and then i put ("CH01,CH02,CH03,CH04"&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objs=s.GetSheetObjects --&amp;gt; &lt;STRONG&gt;Do i have to change this ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;for j=lbound(objs) to ubound(objs)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; strCHID = objs(j).GetObjectID&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; strSearch = "CH28,CH29,CH30,CH61,CH59,CH57,CH62,CH65,CH66,CH67,CH68,CH69,CH130"&amp;nbsp;&amp;nbsp; 'List of charts&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; intFound =&amp;nbsp; instr(strSearch,mid(strCHID,10,5)) ---&amp;gt;&lt;STRONG&gt; DO I have to change this ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if intFound &amp;gt; 0 then&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set rep = ActiveDocument.GetSheetObject(strCHID)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;set p = rep.GetProperties&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;p.ChartProperties.XScrollInitRight = True&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;rep.SetProperties p&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end if&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;next&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;next&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 07:51:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59436#M772817</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-23T07:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59437#M772818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the only line you need to change:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;strSearch = "CH28,CH29,CH30,CH61,CH59,CH57,CH62,CH65,CH66,CH67,CH68,CH69,CH130"&amp;nbsp;&amp;nbsp; 'List of charts&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 09:55:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59437#M772818</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-05-23T09:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59438#M772819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's almost good.&lt;/P&gt;&lt;P&gt;But I have an other message which is "expected end of statement". What does it mean ?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="enstatement.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/203195_enstatement.PNG" style="height: 459px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 11:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59438#M772819</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-23T11:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59439#M772820</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; font-size: 13px;"&gt;"for i = 0 to s-1" should be on a separate line&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 11:52:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59439#M772820</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2018-05-23T11:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: scroll cursor on the right of a chart</title>
      <link>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59440#M772821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you it worked !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2018 13:55:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/scroll-cursor-on-the-right-of-a-chart/m-p/59440#M772821</guid>
      <dc:creator>lessassy</dc:creator>
      <dc:date>2018-05-23T13:55:10Z</dc:date>
    </item>
  </channel>
</rss>

