<?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 Button colour should change after selecting the button in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297078#M496545</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Jagan,&lt;/P&gt;&lt;P&gt;&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; It is working almost as i want , and when i click on the button that button colour should change to blue and remaining two button will have some other colour lets take it as light gray colour for that what is the RGB code and how to write it....&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; In your example once we&amp;nbsp; click on the button that colour changing from blue colour to light gray colour. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and please explain this&amp;nbsp; " =If(vButton = 1, RGB(255, 0, 0), RGB(0,0,255))" how it is working in QV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Dec 2011 07:49:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-14T07:49:53Z</dc:date>
    <item>
      <title>Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297072#M496539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,,&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In my report i have 3 buttons and some objects are linked to these buttons.My requirement is if i click on one button that button clour should change ,,, if i click on second button that colour should change...... i.e we can easily idetify that the button is active, for this i have written a below macro but its not working so please give me ypour suggestions what is wrong here........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub activate3&lt;/P&gt;&lt;P&gt;set ITMHierarchy=activedocument.getsheetobject("BU07")&lt;/P&gt;&lt;P&gt;set prop= ITMHierarchy.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(0,255,0)&lt;/P&gt;&lt;P&gt;ITMHierarchy.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set ITMHierarchy=activedocument.getsheetobject("BU08")&lt;/P&gt;&lt;P&gt;set prop= ITMHierarchy.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(128,128,128)&lt;/P&gt;&lt;P&gt;ITMHierarchy.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set ITMHierarchy=activedocument.getsheetobject("BU09")&lt;/P&gt;&lt;P&gt;set prop= ITMHierarchy.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(128,128,128)&lt;/P&gt;&lt;P&gt;ITMHierarchy.setproperties prop&lt;/P&gt;&lt;P&gt;&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 activate4&lt;/P&gt;&lt;P&gt;set ContractualPortfolio=activedocument.getsheetobject("BU08")&lt;/P&gt;&lt;P&gt;set prop= ContractualPortfolio.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(0,255,0)&lt;/P&gt;&lt;P&gt;ContractualPortfolio.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set ContractualPortfolio=activedocument.getsheetobject("BU07")&lt;/P&gt;&lt;P&gt;set prop= ContractualPortfolio.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(128,128,128)&lt;/P&gt;&lt;P&gt;ContractualPortfolio.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set ContractualPortfolio=activedocument.getsheetobject("BU09")&lt;/P&gt;&lt;P&gt;set prop= ContractualPortfolio.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(128,128,128)&lt;/P&gt;&lt;P&gt;ContractualPortfolio.setproperties prop&lt;/P&gt;&lt;P&gt;&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 activate5&lt;/P&gt;&lt;P&gt;set OperationalPortfolio=activedocument.getsheetobject("BU09")&lt;/P&gt;&lt;P&gt;set prop= OperationalPortfolio.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(0,255,0)&lt;/P&gt;&lt;P&gt;OperationalPortfolio.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set OperationalPortfolio=activedocument.getsheetobject("BU08")&lt;/P&gt;&lt;P&gt;set prop= OperationalPortfolio.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(128,128,128)&lt;/P&gt;&lt;P&gt;OperationalPortfolio.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set OperationalPortfolio=activedocument.getsheetobject("BU07")&lt;/P&gt;&lt;P&gt;set prop= OperationalPortfolio.getproperties&lt;/P&gt;&lt;P&gt;prop.bkgcolor.primarycol.col=rgb(128,128,128)&lt;/P&gt;&lt;P&gt;OperationalPortfolio.setproperties prop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 13:31:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297072#M496539</guid>
      <dc:creator />
      <dc:date>2011-12-13T13:31:24Z</dc:date>
    </item>
    <item>
      <title>Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297073#M496540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did something similar:&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/141366#141366"&gt;http://community.qlik.com/message/141366#141366&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 13:34:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297073#M496540</guid>
      <dc:creator />
      <dc:date>2011-12-13T13:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297074#M496541</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;Check the attachment I created 3 buttons, and a variable.&amp;nbsp; On clicking a button I am modifying the variable value by using the Action -&amp;gt; External -&amp;gt; Set Variable and in General table added the disable condition&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Button1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(vButton = 1, 0,1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 13:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297074#M496541</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2011-12-13T13:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297075#M496542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also change button color by using following expression in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Properties -&amp;gt; Color -&amp;gt; Calculated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(vButton = 1, RGB(255, 0, 0), RGB(0,0,255))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 13:41:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297075#M496542</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2011-12-13T13:41:30Z</dc:date>
    </item>
    <item>
      <title>Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297076#M496543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys&amp;nbsp; thanx for your replies,, i have tried to implement your example where to apply the colour for button am not able to find this property&amp;nbsp; Properties -&amp;gt; Color -&amp;gt; Calculated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am using QV10 version and am new to QV also:):)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marc i will try your example also tonight&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 14:15:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297076#M496543</guid>
      <dc:creator />
      <dc:date>2011-12-13T14:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297077#M496544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently using QV 9, I am attaching the screenshot in QV9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 14:28:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297077#M496544</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2011-12-13T14:28:02Z</dc:date>
    </item>
    <item>
      <title>Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297078#M496545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Jagan,&lt;/P&gt;&lt;P&gt;&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; It is working almost as i want , and when i click on the button that button colour should change to blue and remaining two button will have some other colour lets take it as light gray colour for that what is the RGB code and how to write it....&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; In your example once we&amp;nbsp; click on the button that colour changing from blue colour to light gray colour. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and please explain this&amp;nbsp; " =If(vButton = 1, RGB(255, 0, 0), RGB(0,0,255))" how it is working in QV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 07:49:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297078#M496545</guid>
      <dc:creator />
      <dc:date>2011-12-14T07:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297079#M496546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attachment, it consists of buttons with the colors as specified by you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(vButton = 1, RGB(255, 0, 0), RGB(0,0,255))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above expression changes Button 1 color to Red(RGB(255, 0, 0)) on clicking button1, if any other button is clicked it is modified to Blue(RGB(0,0,255)).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On clicking the first button i modify the variable vButton value to 1 by using Button&amp;nbsp; Properties -&amp;gt; Action -&amp;gt; Set Variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Color code for Gray is RGB(192, 192, 192), you can refer for color code online.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 09:08:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297079#M496546</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2011-12-14T09:08:20Z</dc:date>
    </item>
    <item>
      <title>Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297080#M496547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan now its perfectly working thaks a lot..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have another issue i will post it today..please look in that also&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 10:51:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297080#M496547</guid>
      <dc:creator />
      <dc:date>2011-12-14T10:51:18Z</dc:date>
    </item>
    <item>
      <title>Button colour should change after selecting the button</title>
      <link>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297081#M496548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Jagan i have another issue....&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have some tables.......... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 1) AppServer Table&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; --Server ID&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; --Appl ID these are columns &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2) Server Table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; --Server ID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -- server name.........etc some other columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 3) Software Tabke&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;&amp;nbsp;&amp;nbsp; -- server ID&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;&amp;nbsp;&amp;nbsp; --software name&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;&amp;nbsp; -- software name....etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 4) Apptech Table&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;&amp;nbsp; --Appl ID&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;&amp;nbsp; --Appl Name...etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this i have some other tables using these tables i have created some charts and tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From charts if i select server name it is updating with what all are the server softwares and application under that server and&lt;/P&gt;&lt;P&gt;if&amp;nbsp; i select applname from any object charts should update with whatall are the softwares using for that application and it should updatewith related servers but it is not updated with the related details. soplease give me your suggestions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry due to some reasons am not able togive the sample file or data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Dec 2011 15:09:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Button-colour-should-change-after-selecting-the-button/m-p/297081#M496548</guid>
      <dc:creator />
      <dc:date>2011-12-14T15:09:55Z</dc:date>
    </item>
  </channel>
</rss>

