<?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: Multiple Tables Exporting from QV to Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1594187#M739140</link>
    <description>&lt;P&gt;See attached macro for changes.&lt;/P&gt;&lt;P&gt;I have commented the interesting lines of code!&lt;/P&gt;&lt;P&gt;just adapt the ranges/cells according your needs&lt;/P&gt;&lt;P&gt;the loop before the &lt;STRONG&gt;end sub&lt;/STRONG&gt; statement will remove the empty Worksheets&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sub ExportToExcel
	Set doc = ActiveDocument
	Set objExcel = CreateObject("Excel.Application")
	with objExcel
		.Visible = True		
    End with
	
	Set objWorkbook = objExcel.Workbooks.Add
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "1" 
	set obj = ActiveDocument.GetSheetObject("CH01")
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False	
	obj.CopyTableToClipboard true
	chartCaption = obj.GetCaption.Name.v    		'Get Caption of Table
	ASheet.Range("A1") = chartCaption				'Insert Caption/ChartTitle to  A1
	ASheet.Range("A2").Select						'Select A2
	ASheet.Paste									'paste QV Table to A2
	ASheet.Range("A1:B3").Font.Name = "Arial"		'Set Font to Arial
	ASheet.Range("A1").Font.Bold = True				'Set Font Bold
	ASheet.Range("A1").Font.Size = 16				'Set Fontsize
	ASheet.Range("A1").Font.Underline = True		'Set Underline
	ASheet.Range("A1:A3").Select
	With ASheet.Columns("A:L")
        .WrapText = False							'This prevents the text to be wrapped
        .Orientation = 0							'Maybe helpful setting
        .AddIndent = False							'Maybe helpful setting
        .IndentLevel = 0							'Maybe helpful setting
        .ShrinkToFit = False						'Maybe helpful setting
        .MergeCells = False							'Maybe helpful setting
    End With					
	ASheet.Cells(1,1).HorizontalAlignment = -4108	'Set Alignment:     -4107 --&amp;gt; xlVAlignBottom,-4108 --&amp;gt;	Center,-4117 --&amp;gt; Distributed,-4130 --&amp;gt;Justify,-4160 --&amp;gt;	Top
	ASheet.Columns("A:L").EntireColumn.AutoFit      'Autofits the columnwidth                             	     
								


'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "2" 
'	set obj = ActiveDocument.GetSheetObject("CH02")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "3" 
'	set obj = ActiveDocument.GetSheetObject("CH03")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "4" 
'	set obj = ActiveDocument.GetSheetObject("CH04")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "5" 
'	set obj = ActiveDocument.GetSheetObject("CH05")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "6" 
'	set obj = ActiveDocument.GetSheetObject("CH06")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "7" 
'	set obj = ActiveDocument.GetSheetObject("CH07")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	ASheet.Paste

'The following code will remove the empty excel tabs
Dim ws
Dim wb
objExcel.DisplayAlerts = False
For Each ws In objExcel.Worksheets
    If objExcel.CountA(ws.Cells) = 0 Then ws.Delete
next	
End sub 
	&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Jun 2019 19:41:37 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2019-06-20T19:41:37Z</dc:date>
    <item>
      <title>Multiple Tables Exporting from QV to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1592514#M739137</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am currently using version 12 of QlikView, where I am attempting to export 7 tables at the same time from an application to individual tabs within an Excel workbook.&lt;/P&gt;&lt;P&gt;I am new to the world of macro building from within QV.&amp;nbsp; I am looking to build a macro that allows all 7 tables I have within one application to be exported at the same time to individual tabs within Excel and would like to see what advice / simple layman's term of building one is out there in the community.&lt;/P&gt;&lt;P&gt;I have been researching how best to go about building such a macro by checking in with various forums such as QlikCommunity for tips and advice.&lt;/P&gt;&lt;P&gt;Any help or advice would be greatly appreciated please.&lt;/P&gt;&lt;P&gt;Thanks and best wishes, Mike.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:39:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1592514#M739137</guid>
      <dc:creator>mestevens499</dc:creator>
      <dc:date>2024-11-16T20:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Tables Exporting from QV to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1592548#M739138</link>
      <description>&lt;P&gt;something like this should work:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sub ExportToExcel
	Set doc = ActiveDocument
	Set objExcel = CreateObject("Excel.Application")
	objExcel.Visible = True
	Set objWorkbook = objExcel.Workbooks.Add
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "1" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH01")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "2" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH02")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "3" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH03")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "4" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH04")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "5" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH05")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "6" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH06")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "7" 							'Give your Exceltabs a name
	set obj = ActiveDocument.GetSheetObject("CH07")	'Paste here the correct Qlikview Object-ID
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False
	ASheet.Range("A1").Select
	obj.CopyTableToClipboard true
	ASheet.Paste
End sub &lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Jun 2019 12:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1592548#M739138</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-06-17T12:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Tables Exporting from QV to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1593828#M739139</link>
      <description>&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;First of all, this is brilliant and very helpful/useful to me.&amp;nbsp; Thank you for taking the time to assist me in getting to grips with this.&lt;/P&gt;&lt;P&gt;Following on from and seeing how the tables are exported and laid out in Excel workbooks, I now have a few additional queries / ambitions, which I’m hoping you will be able to answer for me or to point me in the right direction of.&lt;/P&gt;&lt;P&gt;My ambitions / queries are as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;When the table are exported to Excel, they appear to retain the text wrap around. I’ve attempted to unmark the checkbox for Multiline settings – Wrap text (within the Presentation tab of table Properties).&amp;nbsp; But this appears not to work.&amp;nbsp; The only other alternative would be to apply maximum column widths for all columns of every single table exported.&amp;nbsp; Is there a way in which this can be applied to / added into the macro itself?&lt;/LI&gt;&lt;LI&gt;I would also like to be able to adjust the text size and font type of every single table when it exports to Excel? I understand there is a way of achieving this in macro form, but I’m not sure how best to go about this.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;If I wanted to remove any blank sheets from an Excel workbook, could I embed a command from within the QlikView macro or is this not possible to achieve and I would therefore need to remove unwanted sheets from within Excel?&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;Finally, if I wanted to add heading(s) along with each table export to Excel is this achievable from within QlikView macros? Would you be able to demonstrate for me how I would need to be able to apply this command structure from within QlikView please?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Once again, many thanks for your help on this.&amp;nbsp; It’s greatly appreciated.&lt;/P&gt;&lt;P&gt;Mike.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 19:58:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1593828#M739139</guid>
      <dc:creator>mestevens499</dc:creator>
      <dc:date>2019-06-19T19:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Tables Exporting from QV to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1594187#M739140</link>
      <description>&lt;P&gt;See attached macro for changes.&lt;/P&gt;&lt;P&gt;I have commented the interesting lines of code!&lt;/P&gt;&lt;P&gt;just adapt the ranges/cells according your needs&lt;/P&gt;&lt;P&gt;the loop before the &lt;STRONG&gt;end sub&lt;/STRONG&gt; statement will remove the empty Worksheets&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sub ExportToExcel
	Set doc = ActiveDocument
	Set objExcel = CreateObject("Excel.Application")
	with objExcel
		.Visible = True		
    End with
	
	Set objWorkbook = objExcel.Workbooks.Add
	Set objSheet = objWorkbook.Sheets.Add    
	objSheet.Name = "1" 
	set obj = ActiveDocument.GetSheetObject("CH01")
	Set ASheet = objExcel.ActiveSheet
	ASheet.Application.DisplayAlerts = False	
	obj.CopyTableToClipboard true
	chartCaption = obj.GetCaption.Name.v    		'Get Caption of Table
	ASheet.Range("A1") = chartCaption				'Insert Caption/ChartTitle to  A1
	ASheet.Range("A2").Select						'Select A2
	ASheet.Paste									'paste QV Table to A2
	ASheet.Range("A1:B3").Font.Name = "Arial"		'Set Font to Arial
	ASheet.Range("A1").Font.Bold = True				'Set Font Bold
	ASheet.Range("A1").Font.Size = 16				'Set Fontsize
	ASheet.Range("A1").Font.Underline = True		'Set Underline
	ASheet.Range("A1:A3").Select
	With ASheet.Columns("A:L")
        .WrapText = False							'This prevents the text to be wrapped
        .Orientation = 0							'Maybe helpful setting
        .AddIndent = False							'Maybe helpful setting
        .IndentLevel = 0							'Maybe helpful setting
        .ShrinkToFit = False						'Maybe helpful setting
        .MergeCells = False							'Maybe helpful setting
    End With					
	ASheet.Cells(1,1).HorizontalAlignment = -4108	'Set Alignment:     -4107 --&amp;gt; xlVAlignBottom,-4108 --&amp;gt;	Center,-4117 --&amp;gt; Distributed,-4130 --&amp;gt;Justify,-4160 --&amp;gt;	Top
	ASheet.Columns("A:L").EntireColumn.AutoFit      'Autofits the columnwidth                             	     
								


'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "2" 
'	set obj = ActiveDocument.GetSheetObject("CH02")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "3" 
'	set obj = ActiveDocument.GetSheetObject("CH03")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "4" 
'	set obj = ActiveDocument.GetSheetObject("CH04")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "5" 
'	set obj = ActiveDocument.GetSheetObject("CH05")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "6" 
'	set obj = ActiveDocument.GetSheetObject("CH06")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	
'	Set objSheet = objWorkbook.Sheets.Add    
'	objSheet.Name = "7" 
'	set obj = ActiveDocument.GetSheetObject("CH07")
'	Set ASheet = objExcel.ActiveSheet
'	ASheet.Application.DisplayAlerts = False
'	ASheet.Range("A1").Select
'	obj.CopyTableToClipboard true
'	chartCaption = obj.GetCaption.Name.v    'Get Caption of Table
'	ASheet.Range("A1") = chartCaption
'	ASheet.Range("A2").Select
'	ASheet.Paste
'	ASheet.Range("A1:A3").Font.Name = "Arial"
'	ASheet.Range("A1").Font.Bold = True
'	ASheet.Range("A1").Font.Size = 16
'	ASheet.Range("A1").Font.Underline = True
'	ASheet.Paste

'The following code will remove the empty excel tabs
Dim ws
Dim wb
objExcel.DisplayAlerts = False
For Each ws In objExcel.Worksheets
    If objExcel.CountA(ws.Cells) = 0 Then ws.Delete
next	
End sub 
	&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 19:41:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-Tables-Exporting-from-QV-to-Excel/m-p/1594187#M739140</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-06-20T19:41:37Z</dc:date>
    </item>
  </channel>
</rss>

