<?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: Copy text box to xls in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653716#M238902</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; removing the 'true' did it &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Oct 2014 10:13:55 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-03T10:13:55Z</dc:date>
    <item>
      <title>Copy text box to xls</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653712#M238898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am quite familiar with exporting a chart to xls with the code below, but when I try to use this with a text object, it does not seem to work. My text object is ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= 'text ' &amp;amp; today(2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..but if I try and use the code below changing CH01 to TX01, it all goes wrong on the xls coming up with a previous copy / paste or cell reference or ?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anyone any ideas please ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.getsheetobject("CH01")&lt;/P&gt;&lt;P&gt;obj.CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;xlSheet.Range ("A1").Select&lt;/P&gt;&lt;P&gt;xlsSheet.Paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 08:25:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653712#M238898</guid>
      <dc:creator />
      <dc:date>2014-10-03T08:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Copy text box to xls</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653713#M238899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;Not sure CopyTableToClipboard works with Text objects, instead you can try CopyTextToClipboard to copy the text or CopyBitmapToClipboard to copy the the object as an image (with all his pros and cons)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 09:18:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653713#M238899</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-10-03T09:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Copy text box to xls</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653714#M238900</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;Unfortuantely that throws up a macro error of 'wring number of arguments or...'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 09:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653714#M238900</guid>
      <dc:creator />
      <dc:date>2014-10-03T09:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Copy text box to xls</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653715#M238901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you used that 'true' parameter, CopyTextToClipboard and CopyBitmapToClipboard doesn't have parameters, it should be only:&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.getsheetobject("TX01")&lt;/P&gt;&lt;P&gt;obj.CopyTableToClipboard&lt;/P&gt;&lt;P&gt;xlSheet.Range ("A1").Select&lt;/P&gt;&lt;P&gt;xlsSheet.Paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't tested, there is an API guide usually in C:\ProgramData\QlikTech\QlikView Documentation\Automation wich explains macro functions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 09:40:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653715#M238901</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2014-10-03T09:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Copy text box to xls</title>
      <link>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653716#M238902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; removing the 'true' did it &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Oct 2014 10:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Copy-text-box-to-xls/m-p/653716#M238902</guid>
      <dc:creator />
      <dc:date>2014-10-03T10:13:55Z</dc:date>
    </item>
  </channel>
</rss>

