<?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: Select-method not working in macro in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390977#M145804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as i see you can add one extra line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objCurrentSheet = objExcelDoc.Sheets("Datenblatt")&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objExcelDoc.Sheets("Datenblatt").Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;objExcelDoc.Sheets("Datenblatt").Range("A1").Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Sep 2012 13:13:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-09-10T13:13:21Z</dc:date>
    <item>
      <title>Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390963#M145790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem again. On Friday I prepare a macro where I open an exsisted excel file, drop a table on a sheet and close the file while saving with another name. It has worked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than I reload the script on saturday, but nothing is happend &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; Now the script shows me the error "select-method of the range-object could not be implenemt". &lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="21577" class="jive-image-thumbnail jive-image" onclick="" alt="Makro.png" src="https://community.qlik.com/legacyfs/online/21577_Makro.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;If I worte for the range cell, could the object not be suported. What's wrong with the code? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Vicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 10:15:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390963#M145790</guid>
      <dc:creator />
      <dc:date>2012-09-10T10:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390964#M145791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could you paste ExportExel macro code here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 10:22:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390964#M145791</guid>
      <dc:creator />
      <dc:date>2012-09-10T10:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390965#M145792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here you are, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sub ExportExcel()&lt;BR /&gt;Set objExcelApp = CreateObject("Excel.Application")&lt;BR /&gt;objExcelApp.Visible = false&lt;BR /&gt;objExcelApp.DisplayAlerts = false &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Set objExcelDoc = objExcelApp.Workbooks.Open("K:\Test.xlsx")&lt;BR /&gt;&lt;BR /&gt;Set SheetObj = ActiveDocument.GetSheetObject("CH09")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;SheetObj.CopyTableToClipboard true&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Set objCurrentSheet = objExcelDoc.Sheets("Datenblatt")&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("A1").Select&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Paste&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("B:AP").NumberFormatLocal = "#.##0,00"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("D:D").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("G:G").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("J:J").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("M:M").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("P:P").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("S:S").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("V:V").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("Y:Y").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("AB:AB").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("AE:AE").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("AH:AH").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("AK:AK").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("AN:AN").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;objExcelDoc.Sheets("Datenblatt").Range("AQ:AQ").NumberFormatLocal = "#.##0,00%"&lt;BR /&gt;&lt;BR /&gt;objExcelApp.ActiveWorkbook.SaveAS ("K:\Test_"&amp;amp;MonthName(date())&amp;amp;"_"&amp;amp;year(date())&amp;amp;".xlsx")&lt;BR /&gt;objExcelDoc.Close&lt;BR /&gt;objExcelApp.Quit &lt;BR /&gt;End sub&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:08:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390965#M145792</guid>
      <dc:creator />
      <dc:date>2012-09-10T11:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390966#M145793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a question, how is the macro triggered?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:26:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390966#M145793</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-10T11:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390967#M145794</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;with a trigger in the document setting. &lt;/P&gt;&lt;P&gt;The first choose (during script execution) -&amp;gt; start macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The QV-File does triggered with the task scheduler from mircosoft.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390967#M145794</guid>
      <dc:creator />
      <dc:date>2012-09-10T11:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390968#M145795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, so if I understand correctly then you are not using QV-server or Publisher to reload the .qvw?&lt;/P&gt;&lt;P&gt;And, what version of QV are you using (just another check)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 11:53:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390968#M145795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-10T11:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390969#M145796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I'm not using QV-Server or Publisher. I only have single-user licence at the moment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The version is 11.00.11154.0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 12:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390969#M145796</guid>
      <dc:creator />
      <dc:date>2012-09-10T12:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390970#M145797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vicky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you try to open the Test.xlsx document does it report the file is locked for editing?&amp;nbsp; Also check Task Manager for any running Excel applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will need add &lt;STRONG&gt;set objExcelApp = Nothing &lt;/STRONG&gt;to the last line of your code to release the Excel object to prevent this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;flipside&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 12:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390970#M145797</guid>
      <dc:creator>flipside</dc:creator>
      <dc:date>2012-09-10T12:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390971#M145798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not solving my problem. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt; If I set objExcelApp.Visible = true and comment the with the objExcelDoc-part out, the excel file will be opened and save with the different name as desired. there is also no runny excel application in task manager. All is fine, but with the objExcelDoc-part nothing happens. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 12:44:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390971#M145798</guid>
      <dc:creator />
      <dc:date>2012-09-10T12:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390972#M145799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does your K:\Test.xlsx file contain only plain text? or images to?&lt;/P&gt;&lt;P&gt;check if there are no merged cells&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 12:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390972#M145799</guid>
      <dc:creator />
      <dc:date>2012-09-10T12:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390973#M145800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The excel-file has one sheet with expressions and a diagramm, with fetch the data from the sheet Datenblatt. There are also four sheets with different pivot tables. And the sixth sheet is the sheet "Datenblatt" with no merged cells, or images, or expression. Only the table CH09 with former data is on it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helps, you can rewrite the code so that it workes. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 12:53:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390973#M145800</guid>
      <dc:creator />
      <dc:date>2012-09-10T12:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390974#M145801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;weird stuff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but&lt;/P&gt;&lt;P&gt;if i select multiply sheets (right mouse button + Ctrl)&amp;nbsp; and save the excell - macro failed like you report:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you check this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 12:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390974#M145801</guid>
      <dc:creator />
      <dc:date>2012-09-10T12:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390975#M145802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(do not open it - just save to K catalog)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:03:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390975#M145802</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390976#M145803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I haven't got selected more than one sheet. But I haven't got selected the sheet "Datenblatt". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I do that, the macro works fine. That's worst &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because I don't want start on the sheet "Datenblatt", if I open the excel file. I also can't guarantee, that my colleagues remember that they have to leave the excel file on this sheet, which they don't interessted.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I say the Excel file something like, if time is &amp;lt; 06:00, then open with sheet "Datenblatt", otherwise with "Überblick"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:11:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390976#M145803</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390977#M145804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as i see you can add one extra line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objCurrentSheet = objExcelDoc.Sheets("Datenblatt")&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;objExcelDoc.Sheets("Datenblatt").Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;objExcelDoc.Sheets("Datenblatt").Range("A1").Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this should help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390977#M145804</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390978#M145805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW what is this object for ... &lt;STRONG&gt;objCurrentSheet ?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390978#M145805</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390979#M145806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*head meets desk*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I though the line Set objCurrentSheet = objExcelDoc.Sheets("Datenblatt") was the selecting. I should find the time to learn intensiv more VB-Scripting. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:19:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390979#M145806</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390980#M145807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hmm... the objCurrentSheet is perhaps a remnant of my attempts. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:20:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390980#M145807</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390981#M145808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm poor VB programist to but still wonder why line:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;objExcelDoc.Sheets("Datenblatt").Range("A1").Select&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;doesn't activate the sheet &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:22:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390981#M145808</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select-method not working in macro</title>
      <link>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390982#M145809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also haven't much knowledge in VB. But I'm happy, that it works now &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Sep 2012 13:42:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-method-not-working-in-macro/m-p/390982#M145809</guid>
      <dc:creator />
      <dc:date>2012-09-10T13:42:35Z</dc:date>
    </item>
  </channel>
</rss>

