<?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 Send Multiple Straight Tables to One XLS Sheet Looped through Field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961721#M960101</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;Sorry for the long Heading...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok here is my scenario, i will try keep it as simple as possible. I have one Sales report by Store and one Sales report by Product. What needs to happen is a Department needs to be selected, the 2 reports sent to excel (on 1 Sheet - side by side), the Sheet renamed to the Department Name. This process must happen for each Department until you have multiple sheets in a single document. I have no trouble with the Looping process or naming each sheet per Department.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is getting the 2nd report on the sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my Macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG style="color: #000000;"&gt;Sub SalesReport&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;print_excel "CH1028"&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; 'Change this to be the relevant chart objectID that you would like to send to Excel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End Sub &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Sub print_excel(v_object) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Dim sheetname,i &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set XLApp = CreateObject("Excel.Application") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLApp.Visible = FALSE &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set XLDoc = XLApp.Workbooks.Add &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set Ftg = Activedocument.Fields("Department") '''This is the field I am looping on. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set UrvFtg = Ftg.GetPossibleValues &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set MyTable = ActiveDocument.GetSheetObject(v_object) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;For i= 0 to UrvFtg.Count-1 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname = "" &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname = UrvFtg.Item(i).Text &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Ftg.Select sheetname &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;If Len(sheetname)&amp;gt;29 Then '''Checking length of Sheet caption &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname=left(sheetname,27)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End If &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname= replace(sheetname,"'","") '''Only alphanumeric .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname= replace(sheetname,"/","") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname= replace(sheetname,":","") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;NoOfRows = MyTable.GetRowCount &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;If NoOfRows &amp;gt; 1 Then &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLDoc.Sheets.Add.Name= "tmp" &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLSheet XLDoc,"tmp",v_object,sheetname &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End If &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Next &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Ftg.Clear &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLApp.Visible = TRUE &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End Sub &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Function XLSheet(ExcelDoc,SheetName,ChartName,Category) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set obj = ActiveDocument.GetSheetObject(ChartName) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;obj.CopyTableToClipboard True &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).PasteSpecial '-4163 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Columns("A:A").ColumnWidth = 100 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).cells.select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).columns.select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).cells.mergecells = false &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Cells.EntireRow.AutoFit &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Cells.EntireColumn.AutoFit &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Cells(1, 5).Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).name = Category &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG&gt;End Function&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help would as always be hugely appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Oct 2015 14:02:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-10-26T14:02:04Z</dc:date>
    <item>
      <title>Send Multiple Straight Tables to One XLS Sheet Looped through Field</title>
      <link>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961721#M960101</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;Sorry for the long Heading...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok here is my scenario, i will try keep it as simple as possible. I have one Sales report by Store and one Sales report by Product. What needs to happen is a Department needs to be selected, the 2 reports sent to excel (on 1 Sheet - side by side), the Sheet renamed to the Department Name. This process must happen for each Department until you have multiple sheets in a single document. I have no trouble with the Looping process or naming each sheet per Department.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is getting the 2nd report on the sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my Macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG style="color: #000000;"&gt;Sub SalesReport&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;print_excel "CH1028"&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; 'Change this to be the relevant chart objectID that you would like to send to Excel&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End Sub &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Sub print_excel(v_object) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Dim sheetname,i &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set XLApp = CreateObject("Excel.Application") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLApp.Visible = FALSE &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set XLDoc = XLApp.Workbooks.Add &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set Ftg = Activedocument.Fields("Department") '''This is the field I am looping on. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set UrvFtg = Ftg.GetPossibleValues &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set MyTable = ActiveDocument.GetSheetObject(v_object) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;For i= 0 to UrvFtg.Count-1 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname = "" &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname = UrvFtg.Item(i).Text &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Ftg.Select sheetname &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;If Len(sheetname)&amp;gt;29 Then '''Checking length of Sheet caption &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname=left(sheetname,27)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End If &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname= replace(sheetname,"'","") '''Only alphanumeric .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname= replace(sheetname,"/","") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;sheetname= replace(sheetname,":","") &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;NoOfRows = MyTable.GetRowCount &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;If NoOfRows &amp;gt; 1 Then &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLDoc.Sheets.Add.Name= "tmp" &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLSheet XLDoc,"tmp",v_object,sheetname &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End If &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Next &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Ftg.Clear &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;XLApp.Visible = TRUE &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;End Sub &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Function XLSheet(ExcelDoc,SheetName,ChartName,Category) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;Set obj = ActiveDocument.GetSheetObject(ChartName) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;obj.CopyTableToClipboard True &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).PasteSpecial '-4163 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Columns("A:A").ColumnWidth = 100 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).cells.select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).columns.select &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).cells.mergecells = false &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Cells.EntireRow.AutoFit &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Cells.EntireColumn.AutoFit &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).Cells(1, 5).Select&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: calibri, verdana, arial, sans-serif;"&gt;ExcelDoc.Sheets(SheetName).name = Category &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;&lt;STRONG&gt;End Function&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help would as always be hugely appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2015 14:02:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961721#M960101</guid>
      <dc:creator />
      <dc:date>2015-10-26T14:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Send Multiple Straight Tables to One XLS Sheet Looped through Field</title>
      <link>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961722#M960102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What else do you need from me, should i build an example qvw?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 10:12:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961722#M960102</guid>
      <dc:creator />
      <dc:date>2015-10-27T10:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Send Multiple Straight Tables to One XLS Sheet Looped through Field</title>
      <link>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961723#M960103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looked that you copied the second chart over the first chart, right? You need then to transfer your for-loop counter i to the export-function which will then specify (per further if-loop) the target cell for your paste-statement. I think if you looked here you will find various examples how to adress this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-4416"&gt;VB Macro to Loop Field (Dynamic) and Export Chart (Dynamic) to Excel &amp;amp;amp; Name Sheets by Field Value&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-5405"&gt;Export to Excel for each dimension value as separate sheet&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&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;&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, 27 Oct 2015 11:57:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961723#M960103</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-10-27T11:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Send Multiple Straight Tables to One XLS Sheet Looped through Field</title>
      <link>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961724#M960104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The 3rd link you sent me was definitely a winner!, just added a loop by field on there and a field variable for the Sheet Naming and i was sorted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 14:33:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Send-Multiple-Straight-Tables-to-One-XLS-Sheet-Looped-through/m-p/961724#M960104</guid>
      <dc:creator />
      <dc:date>2015-10-27T14:33:58Z</dc:date>
    </item>
  </channel>
</rss>

