<?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: Error Object doesn't support this property or method in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530136#M198130</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can concate the two field in script edidor like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Emp_id&amp;amp;'-'&amp;amp;Emp_Subid as Concate_field&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,* &lt;/P&gt;&lt;P&gt;From Sample.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And u can use this field(Concate_field) in a Macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kabilan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Jul 2013 08:52:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-07-03T08:52:03Z</dc:date>
    <item>
      <title>Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530130#M198124</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;As I am trying to get the list box object values in a variable but it says "Object doesn't support this property or method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub pressa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set doc = ActiveDocument&lt;/P&gt;&lt;P&gt;Set b = doc.GetSheetObject("LB08")&lt;/P&gt;&lt;P&gt;msgbox (b)&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;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chriss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2013 06:58:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530130#M198124</guid>
      <dc:creator />
      <dc:date>2013-07-02T06:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530131#M198125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, we can't show the object in a Msg box, So use below macro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub pressa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set doc = ActiveDocument.GetSheetObject("LB02")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;boxvalues = doc.GetPossibleValues&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = lbound(boxvalues) to ubound(boxvalues)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; msgbox(boxvalues(i))&lt;/P&gt;&lt;P&gt;next&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;Regards,&lt;/P&gt;&lt;P&gt;Kabilan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2013 07:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530131#M198125</guid>
      <dc:creator />
      <dc:date>2013-07-02T07:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530132#M198126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Kabilan and Kaushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I can read the value....&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;Chriss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jul 2013 07:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530132#M198126</guid>
      <dc:creator />
      <dc:date>2013-07-02T07:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530133#M198127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kabilan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I need one more clarification in the script, now as in the list box first value should be selected and call the another procedure to run and then next i value selected, like the same I am trying, when I try doc.Selected, which I am getting a error of "Object doesn't support this property or method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Chriss&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub SelectCustomer()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set doc = ActiveDocument.GetSheetObject("LB08")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;boxvalues = doc.GetPossibleValues&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For i = LBound(boxvalues) To UBound(boxvalues)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' msgbox(boxvalues(i))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt; doc.Selected&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Call ExportToExcel&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>Wed, 03 Jul 2013 05:20:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530133#M198127</guid>
      <dc:creator />
      <dc:date>2013-07-03T05:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530134#M198128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13728340772575697" jivemacro_uid="_13728340772575697"&gt;&lt;P&gt;sub pressa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set doc = ActiveDocument.GetSheetObject("LB02")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;boxvalues = doc.GetPossibleValues&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = lbound(boxvalues) to ubound(boxvalues)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.Fields("FieldName").Select boxvalues(i)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Call ExportToExcel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Doc.clear&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kabilan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 06:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530134#M198128</guid>
      <dc:creator />
      <dc:date>2013-07-03T06:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530135#M198129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kabilan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply, I have almost acomplised the requirement and one final request is in the "FieldName", i have multiple values to be selected, so I concatenated the two fields in a listbox but when I try to do in the script, it shows error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you pleas check the attached ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&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;Chriss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 07:18:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530135#M198129</guid>
      <dc:creator />
      <dc:date>2013-07-03T07:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530136#M198130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can concate the two field in script edidor like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Emp_id&amp;amp;'-'&amp;amp;Emp_Subid as Concate_field&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,* &lt;/P&gt;&lt;P&gt;From Sample.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And u can use this field(Concate_field) in a Macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kabilan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 08:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530136#M198130</guid>
      <dc:creator />
      <dc:date>2013-07-03T08:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530137#M198131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kabilan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your valuable help, it works as expected, what i requested and Is it possble to pass the &lt;CODE class="jive-code jive-sql"&gt;"&lt;SPAN class="jive-sql-quote" style="color: red;"&gt;FieldName&lt;/SPAN&gt;"&lt;/CODE&gt; value in a text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance I can create a individual report based on &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Emp_id&amp;amp;'-'&amp;amp;Emp_Subid, that is fine but as I need to generate a group of &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;five employees in a one report for this I need a automatic selection of five employees &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;Emp_id&amp;amp;'-'&amp;amp;Emp_Subid.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Is it possible....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Chriss&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 10:52:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530137#M198131</guid>
      <dc:creator />
      <dc:date>2013-07-03T10:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530138#M198132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How u group them five employee?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do u have any field for that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If ur employee id as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EmpId&lt;/P&gt;&lt;P&gt;100&lt;/P&gt;&lt;P&gt;101&lt;/P&gt;&lt;P&gt;102&lt;/P&gt;&lt;P&gt;103&lt;/P&gt;&lt;P&gt;104&lt;/P&gt;&lt;P&gt;105&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then U can write a Macro like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activedocument.Fields("EmpId").Select "&amp;gt;105"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code jive-sql"&gt;sub pressa&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="jive-sql-keyword"&gt;Set&lt;/SPAN&gt; doc = ActiveDocument.GetSheetObject("&lt;SPAN class="jive-sql-quote"&gt;LB02&lt;/SPAN&gt;"&lt;SPAN class="jive-sql-quote"&gt;)&lt;BR /&gt;&lt;BR /&gt;boxvalues = doc.GetPossibleValues&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;for i = lbound(boxvalues) to ubound(boxvalues) &lt;/SPAN&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code jive-sql"&gt;&lt;SPAN class="jive-sql-quote"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(i&amp;lt;5) then &lt;BR /&gt;&amp;nbsp;&amp;nbsp; ActiveDocument.Fields(&lt;/SPAN&gt;"&lt;SPAN class="jive-sql-quote"&gt;FieldName&lt;/SPAN&gt;").Toggle&lt;SPAN class="jive-sql-keyword"&gt;Select&lt;/SPAN&gt; boxvalues(i)&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class="jive-code jive-sql"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;BR /&gt;&lt;SPAN class="jive-sql-keyword"&gt;next&lt;/SPAN&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;CODE class="jive-code jive-sql"&gt;Call ExportToExcel&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Doc.clear&lt;/CODE&gt;&lt;CODE class="jive-code jive-sql"&gt;&lt;BR /&gt;&lt;SPAN class="jive-sql-keyword"&gt;end&lt;/SPAN&gt; sub&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Kabilan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 11:46:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530138#M198132</guid>
      <dc:creator />
      <dc:date>2013-07-03T11:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530139#M198133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kabilan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your valuable support, I have linked my realtime schenorio which is attached in the qvw file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please look and advise me is that is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chriss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 14:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530139#M198133</guid>
      <dc:creator />
      <dc:date>2013-07-03T14:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530140#M198134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jul 2013 07:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530140#M198134</guid>
      <dc:creator />
      <dc:date>2013-07-04T07:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error Object doesn't support this property or method</title>
      <link>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530141#M198135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kabilan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time and efforts, its perfectly matching my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will apply it and let you know and further, I sent a request to gamil id could you please acknowledge it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&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;Chriss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Jul 2013 07:50:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Error-Object-doesn-t-support-this-property-or-method/m-p/530141#M198135</guid>
      <dc:creator />
      <dc:date>2013-07-04T07:50:50Z</dc:date>
    </item>
  </channel>
</rss>

