<?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: About text control using the VB script export Excel problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024357#M346343</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;First of all thank you for your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;"CopyTableToClipboard to CopyTextToClipboard replace" is wrong,&lt;/P&gt;&lt;P&gt;This is not to get the value of the TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Mar 2016 08:55:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-08T08:55:04Z</dc:date>
    <item>
      <title>About text control using the VB script export Excel problem</title>
      <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024354#M346340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to use the VB script, export the Excel report, with text to fight together form.PLS See attachment.&lt;/P&gt;&lt;P&gt;I find some examples in community, but They are list and table export scripts, the export of text did not find the relevant examples, please expert advice.&lt;/P&gt;&lt;P&gt;thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 02:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024354#M346340</guid>
      <dc:creator />
      <dc:date>2016-03-08T02:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: About text control using the VB script export Excel problem</title>
      <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024355#M346341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For this you need an approach like this one: &lt;A href="http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/" title="http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/"&gt;QlikTip #32: Exporting multiple QV objects to a single Excel document&lt;/A&gt; and you would need to replace .CopyTableToClipboard to . CopyTextToClipboard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I suggest to consider if you couldn't use a pivot-table for this - technically it's not a great problem, you would need to create a synthetic dimension with sales and inventory and 9 expressions which have a small if-loop to check the dimension. You are only restricted with the layout which isn't quite so flexible like a textbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another option might be to use different sheets/objects for viewing within qlikview and for exporting and/or printing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 08:02:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024355#M346341</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-03-08T08:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: About text control using the VB script export Excel problem</title>
      <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024356#M346342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This script fragment shows you how you can access the text property of all text objects of a sheet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14574243797114" jivemacro_uid="_14574243797114" modifiedtitle="true"&gt;
&lt;P&gt;Sub ExportTextObjects&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Set doc = ActiveDocument&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Set sht = doc.ActiveSheet&lt;/P&gt;
&lt;P&gt;&amp;nbsp; objs = sht.GetTextObjects&lt;/P&gt;
&lt;P&gt;&amp;nbsp; l = ""&lt;/P&gt;
&lt;P&gt;&amp;nbsp; For i=LBound( objs ) to UBound( objs )&lt;/P&gt;
&lt;P&gt;&amp;nbsp; l = l + objs(i).GetText +&amp;nbsp; Chr(13) + Chr(10)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Next&lt;/P&gt;
&lt;P&gt;&amp;nbsp; MsgBox l&lt;/P&gt;
&lt;P&gt;End Sub&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to put this in context for your needs and possibly have a way to determine what is row and column of each text object. It could be determined by top and left coordinates of each object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway a pivot or straight table is a much easier way to go...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 08:08:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024356#M346342</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-03-08T08:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: About text control using the VB script export Excel problem</title>
      <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024357#M346343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;First of all thank you for your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;"CopyTableToClipboard to CopyTextToClipboard replace" is wrong,&lt;/P&gt;&lt;P&gt;This is not to get the value of the TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 08:55:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024357#M346343</guid>
      <dc:creator />
      <dc:date>2016-03-08T08:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: About text control using the VB script export Excel problem</title>
      <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024358#M346344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, CopyTextToClipboard don't worked but the CopyTableToClipboard does it yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:31:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024358#M346344</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-03-08T09:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: About text control using the VB script export Excel problem</title>
      <link>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024359#M346345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all thank you for your reply.&lt;/P&gt;&lt;P&gt;You said very good, but my idea is this, I have been studying the method of Test_David.qvw, through the control of the ID to locate the Excel cell. Now that it has received a value, in order to fill in the order to Excel. &lt;SPAN style="color: #ff0000;"&gt;Because the rows and columns of the table are fixed&lt;/SPAN&gt;, so you can avoid the problem of positioning.&lt;/P&gt;&lt;P&gt;How to write data to the Excel cell?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 09:45:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/About-text-control-using-the-VB-script-export-Excel-problem/m-p/1024359#M346345</guid>
      <dc:creator />
      <dc:date>2016-03-08T09:45:10Z</dc:date>
    </item>
  </channel>
</rss>

