<?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: change Tabs by seconds in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390938#M485751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See &lt;A _jive_internal="true" href="https://community.qlik.com/message/327569#327569"&gt;here&lt;/A&gt; or &lt;A _jive_internal="true" href="https://community.qlik.com/message/172281#172281"&gt;here&lt;/A&gt; or &lt;A _jive_internal="true" href="https://community.qlik.com/message/60984#60984"&gt;here&lt;/A&gt;. The first link is probably the best option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Apr 2013 14:40:22 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2013-04-23T14:40:22Z</dc:date>
    <item>
      <title>change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390937#M485750</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; Is there a way to change automatically the tabs in a QVW, for example, each 30 seconds? thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 14:03:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390937#M485750</guid>
      <dc:creator>fabio_vallone</dc:creator>
      <dc:date>2013-04-23T14:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390938#M485751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See &lt;A _jive_internal="true" href="https://community.qlik.com/message/327569#327569"&gt;here&lt;/A&gt; or &lt;A _jive_internal="true" href="https://community.qlik.com/message/172281#172281"&gt;here&lt;/A&gt; or &lt;A _jive_internal="true" href="https://community.qlik.com/message/60984#60984"&gt;here&lt;/A&gt;. The first link is probably the best option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 14:40:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390938#M485751</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-04-23T14:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390939#M485752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 14:43:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390939#M485752</guid>
      <dc:creator>fabio_vallone</dc:creator>
      <dc:date>2013-04-23T14:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390940#M485753</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 have a macro for this also. Start it by alling the Start sub.&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_13667294113074267" jivemacro_uid="_13667294113074267"&gt;&lt;P&gt;SUB Start&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ChangeTabs 3&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUB ChangeTabs(intChangeTabsDelay)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ' Get number of sheets&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; intSheets = ActiveDocument.NoOfSheets&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ' Infinite loop&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; DO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Add to sheet counter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; intSheet = intSheet + 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Check if last sheet is passed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF intSheet &amp;gt; intSheets - 1 THEN intSheet = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Activate sheet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.ActivateSheet intSheet&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Wait for application to catch up&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetApplication.WaitForIdle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Wait&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ActiveDocument.GetApplication.Sleep intChangeTabsDelay * 1000&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ' End infinite loop&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; LOOP UNTIL 1 = 2&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 15:03:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390940#M485753</guid>
      <dc:creator />
      <dc:date>2013-04-23T15:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390941#M485754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I'll try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2013 15:05:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390941#M485754</guid>
      <dc:creator>fabio_vallone</dc:creator>
      <dc:date>2013-04-23T15:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390942#M485755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, i'm new in macros, so I hope someone can guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a 'dashboard' on my 60' LCD screen, where all values from a field ('Store') are changed every 10 sec. and then looped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope to get some input. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 May 2013 13:59:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390942#M485755</guid>
      <dc:creator />
      <dc:date>2013-05-30T13:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390943#M485756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Grape ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to stop or cloase the document..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had used ur script and is working well but how to stop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 07:49:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390943#M485756</guid>
      <dc:creator>sandeepprasad_j</dc:creator>
      <dc:date>2013-05-31T07:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390944#M485757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there a finite number of values in Store?&amp;nbsp; If so you should be able to adapt the attached code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This uses standard HTML code to flip between different pages (page one and two are two tabs on the same dashboard, the third is elsewhere).&amp;nbsp; You will see in frame one and two there is a &lt;STRONG&gt;select &lt;/STRONG&gt;parameter.&amp;nbsp; I have a listbox called TRIGGER that is being selected (in order to fire an Action on page change).&amp;nbsp; You will need to create a listbox for Store and have a 'frame' for each store entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there are a large number of Stores, or the there is the potential for the list to expand you may need to use another approach - but this should point you in the correct direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code for &lt;STRONG&gt;frame1.html&lt;/STRONG&gt; in the attachment is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="html" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13699888168883190" jivemacro_uid="_13699888168883190"&gt;&lt;PRE __default_attr="html" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13699888220893974" jivemacro_uid="_13699888220893974"&gt;&lt;P&gt;&amp;lt;html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;meta http-equiv="refresh" content="60; url=frame2.html"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;iframe id="qvdemo" name="qvdemo" src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://server/QvAjaxZfc/opendoc.htm?document=System/QlikView%20Status%20Dashboard.qvw&amp;amp;host=localhost&amp;amp;select=TRIGGER,0&amp;amp;sheet=OVIEW"&gt;http://server/QvAjaxZfc/opendoc.htm?document=System/QlikView%20Status%20Dashboard.qvw&amp;amp;host=localhost&amp;amp;select=TRIGGER,0&amp;amp;sheet=OVIEW&lt;/A&gt;&lt;SPAN&gt;" width="100%" height="100%"&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;/PRE&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps you out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.quickintelligence.co.uk/qlikview-blog/"&gt;http://www.quickintelligence.co.uk/qlikview-blog/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 08:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390944#M485757</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2013-05-31T08:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390945#M485758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hit escape ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 08:37:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390945#M485758</guid>
      <dc:creator />
      <dc:date>2013-05-31T08:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390946#M485759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Yadurand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not working da.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 08:55:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390946#M485759</guid>
      <dc:creator>sandeepprasad_j</dc:creator>
      <dc:date>2013-05-31T08:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390947#M485760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, there is aprox 40 values in the field (storenumbers). What I am looking for is a module/macro to help me out. Can you help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rasmus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 09:57:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390947#M485760</guid>
      <dc:creator />
      <dc:date>2013-05-31T09:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: change Tabs by seconds</title>
      <link>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390948#M485761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code you need to advance through values in a field using an Action is this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="java" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13699957114316613" jivemacro_uid="_13699957114316613"&gt;&lt;P&gt;=if(isnull(minstring({1}if(Store&amp;gt; '$(=Only(Store))', Store, null()))), minstring({1}Store),minstring({1}if(Store&amp;gt; '$(=Only(Store))', Store, null())))&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could attach a trigger on selection of a field to Select In Field for this code.&amp;nbsp; You could then load a data island with a field called Advance and values of just 0 and 1.&amp;nbsp; If you place this on your document as a list box, and rename it to ADVANCE you could use the frame.html example I posted with just two frames.&amp;nbsp; In &lt;STRONG&gt;frame1.html&lt;/STRONG&gt; you would have &lt;STRONG&gt;&amp;amp;select=ADVANCE,0&lt;/STRONG&gt; and in &lt;STRONG&gt;frame2.html &lt;/STRONG&gt;you would have &lt;STRONG&gt;&amp;amp;select=ADVANCE,1&lt;/STRONG&gt; .&amp;nbsp; This way each time the browser refreshes the selection on that field would change, firing the trigger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cold do similar with code in a macro, but I believe that macro's do not always fire in the browser correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.quickintelligence.co.uk/"&gt;http://www.quickintelligence.co.uk/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 May 2013 10:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/change-Tabs-by-seconds/m-p/390948#M485761</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2013-05-31T10:27:24Z</dc:date>
    </item>
  </channel>
</rss>

