<?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: Exportar varias tablas a un archivo html in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789990#M279347</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Directly with qv-functionalities it's only possible to export one object after another to html. So it seems that the only way is to manipulate the html. Maybe with the following main-logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- export all your wished objects to html (in a certain order?)&lt;/P&gt;&lt;P&gt;- open the first one (as master)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set fso = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set HtmlFile = fso.OpenTextFile("D:\Path\File.html", 2, true)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlContent= HtmlFile.readall&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- split this by &amp;lt;!--EndFragment--&amp;gt; into two pieces (vStart &amp;amp; vEnd)&lt;/P&gt;&lt;P&gt;- open the next file&lt;/P&gt;&lt;P&gt;- cut the area from &lt;STRONG&gt;&amp;lt;!--StartFragment--&amp;gt;&lt;/STRONG&gt; to &lt;STRONG&gt;&amp;lt;!--EndFragment--&amp;gt;&lt;/STRONG&gt; into a variable (vBetween)&lt;/P&gt;&lt;P&gt;- put the variables together and write it in this or a new file + save &amp;amp; close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlFile.write vStart &amp;amp; vBetween &amp;amp; vEnd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlFile.close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not very beautiful but I hope it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Feb 2015 12:33:29 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-02-26T12:33:29Z</dc:date>
    <item>
      <title>Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789987#M279344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hola,&lt;/P&gt;&lt;P&gt;comparto con todos el código que usar para mandar mails con las tablas pegadas en el cuerpo del mensaje.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lo que necesito es que en el html se peguen varias tablas, no solo una, y a poder ser poder insertar el texto que yo quiera entre las tablas.&lt;/P&gt;&lt;P&gt;De momento solo consigo poner una tabla pero necesita unas 4 o 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gracias!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MI CODIGO:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'// ****************************************************************&lt;/P&gt;&lt;P&gt;'// Enviador Mails Pegados Cuerpo&lt;/P&gt;&lt;P&gt;'// ****************************************************************&lt;/P&gt;&lt;P&gt;sub SendMail&lt;/P&gt;&lt;P&gt;if Time()&amp;gt;TimeValue("10:15:00") and Time()&amp;lt;TimeValue("21:30:00")Then&lt;/P&gt;&lt;P&gt;&amp;nbsp; ' Object creation&amp;nbsp; &lt;/P&gt;&lt;P&gt;Set objMsg = CreateObject("CDO.Message")&amp;nbsp; &lt;/P&gt;&lt;P&gt;Set msgConf = CreateObject("CDO.Configuration")&amp;nbsp; &lt;/P&gt;&lt;P&gt;strDate = CDate(Date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set cs = ActiveDocument.GetSheetObject("CH80")&lt;/P&gt;&lt;P&gt;cs.ExportHtml "C:\Directory\Pruebas\informe.html"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objMsg.CreateMHTMLBody "file://C:\Directory\Pruebas\informe.html"&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' Server Configuration&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;SPAN&gt;") = 2&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;SPAN&gt;") = "server***********"&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;SPAN&gt;") = 25&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/A&gt;&lt;SPAN&gt;") = 1&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusername" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/A&gt;&lt;SPAN&gt;") = "mimai********l"&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendpassword" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/A&gt;&lt;SPAN&gt;") = "pass******"&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl&lt;/A&gt;&lt;SPAN&gt;") = 1&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;msgConf.Fields.Update&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' Email&amp;nbsp; &lt;/P&gt;&lt;P&gt;objMsg.To = "mmail***********"&amp;nbsp; &lt;/P&gt;&lt;P&gt;objMsg.From = "mail**********.com"&amp;nbsp; &lt;/P&gt;&lt;P&gt;objMsg.Subject = "Reporte "&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp; Now()&lt;/P&gt;&lt;P&gt;objMsg.Sender = "Reportes"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objMsg.Configuration = msgConf&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' Send&amp;nbsp; &lt;/P&gt;&lt;P&gt;objMsg.Send&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' Clear&amp;nbsp; &lt;/P&gt;&lt;P&gt;Set objMsg = nothing&amp;nbsp; &lt;/P&gt;&lt;P&gt;Set msgConf = nothing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 12:52:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789987#M279344</guid>
      <dc:creator />
      <dc:date>2015-02-25T12:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789988#M279345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a cycle.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 16:58:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789988#M279345</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-25T16:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789989#M279346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Con esto ya lo soluciono todo.... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plain.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 06:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789989#M279346</guid>
      <dc:creator />
      <dc:date>2015-02-26T06:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789990#M279347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Directly with qv-functionalities it's only possible to export one object after another to html. So it seems that the only way is to manipulate the html. Maybe with the following main-logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- export all your wished objects to html (in a certain order?)&lt;/P&gt;&lt;P&gt;- open the first one (as master)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set fso = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set HtmlFile = fso.OpenTextFile("D:\Path\File.html", 2, true)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlContent= HtmlFile.readall&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- split this by &amp;lt;!--EndFragment--&amp;gt; into two pieces (vStart &amp;amp; vEnd)&lt;/P&gt;&lt;P&gt;- open the next file&lt;/P&gt;&lt;P&gt;- cut the area from &lt;STRONG&gt;&amp;lt;!--StartFragment--&amp;gt;&lt;/STRONG&gt; to &lt;STRONG&gt;&amp;lt;!--EndFragment--&amp;gt;&lt;/STRONG&gt; into a variable (vBetween)&lt;/P&gt;&lt;P&gt;- put the variables together and write it in this or a new file + save &amp;amp; close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlFile.write vStart &amp;amp; vBetween &amp;amp; vEnd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlFile.close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not very beautiful but I hope it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 12:33:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789990#M279347</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-26T12:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789991#M279348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but.... Can you write it in my code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 12:39:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789991#M279348</guid>
      <dc:creator />
      <dc:date>2015-02-26T12:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789992#M279349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set cs = ActiveDocument.GetSheetObject("CH80")&lt;/P&gt;&lt;P&gt;cs.ExportHtml "C:\Directory\Pruebas\informe.html"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.... your another objects ... maybe exported in a loop ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set fso = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set HtmlFile = fso.OpenTextFile("D:\Path\File.html", 2, true)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlContent= HtmlFile.readall&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;split HtmlContent into the variables per left/right/mid with instr(HtmlContent, "&amp;lt;!--StartFragment--&amp;gt;")&lt;/P&gt;&lt;P&gt;open the next export-file and cut this table with the same method&lt;/P&gt;&lt;P&gt;put all together and write it within the txt-file and save it and then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objMsg.CreateMHTMLBody "file://C:\Directory\Pruebas\informe.html"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 13:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789992#M279349</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-26T13:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789993#M279350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'// ****************************************************************&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'// Enviador Mails Pegados Cuerpo&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'// ****************************************************************&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sub SendMail&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if Time()&amp;gt;TimeValue("10:15:00") and Time()&amp;lt;TimeValue("21:30:00")Then&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; ' Object creation &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set objMsg = CreateObject("CDO.Message") &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set msgConf = CreateObject("CDO.Configuration") &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;strDate = CDate(Date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;set cs = ActiveDocument.GetSheetObject("CH80")&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;cs.ExportHtml "C:\Directory\Pruebas\informe.html"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;set fso = CreateObject("Scripting.FileSystemObject")&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set HtmlFile = fso.OpenTextFile("D:\Path\File.html", 2, true)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlContent= HtmlFile.readall&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objMsg.CreateMHTMLBody "file://C:\Directory\Pruebas\informe.html"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;' Server Configuration &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusing" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = 2&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserver" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = "server***********"&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpserverport" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = 25&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/smtpauthenticate&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = 1&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendusername" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/sendusername&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = "mimai********l"&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/sendpassword" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/sendpassword&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = "pass******"&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;msgConf.Fields.Item("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/smtpusessl" rel="nofollow" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3778c7;"&gt;http://schemas.microsoft.com/cdo/configuration/smtpusessl&lt;/A&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;") = 1&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;msgConf.Fields.Update &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;' Email &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objMsg.To = "mmail***********" &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objMsg.From = "mail**********.com" &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objMsg.Subject = "Reporte "&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp; Now()&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objMsg.Sender = "Reportes" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set objMsg.Configuration = msgConf &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;' Send &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;objMsg.Send &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;' Clear &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set objMsg = nothing &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Set msgConf = nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end if&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;end sub&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Can you continue? i don't know how i ican do it.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 13:26:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789993#M279350</guid>
      <dc:creator />
      <dc:date>2015-02-26T13:26:53Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789994#M279351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not very nice - but it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub CreateHtmlBodyMail&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dim doc, obj, objArr, file, path&lt;/P&gt;&lt;P&gt;dim i&lt;/P&gt;&lt;P&gt;dim vStart, vBetween, vEnd, TempHTML, HtmlContent, fso&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set doc = ActiveDocument&lt;/P&gt;&lt;P&gt;path = "D:\"&lt;/P&gt;&lt;P&gt;objArr = array("TB01", "CH01", "CS01")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set fso = CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = 0 to ubound(objArr)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = doc.GetSheetObject(objArr(i))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; file = "HTML " &amp;amp; i&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.ExportHtml path &amp;amp; file &amp;amp; ".html"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; doc.GetApplication.Sleep 500&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set TempHTML = fso.OpenTextFile(path &amp;amp; file &amp;amp; ".html", 1, true)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HtmlContent = TempHTML.readall&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if i = 0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vStart = mid(HtmlContent, 1, instr(HtmlContent, "&amp;lt;!--EndFragment--&amp;gt;")) &amp;amp; chr(10)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vEnd = chr(10) &amp;amp; mid(HtmlContent, instr(HtmlContent, "&amp;lt;!--EndFragment--&amp;gt;") + 18)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif i &amp;gt; 0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vBetween = vBetween &amp;amp; mid(HtmlContent, instr(HtmlContent, "&amp;lt;!--StartFragment--&amp;gt;"), instr(HtmlContent, "&amp;lt;!--EndFragment--&amp;gt;") + 18) &amp;amp; chr(10) &amp;amp; chr(10)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TempHTML.close&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HtmlContent = vStart &amp;amp; vBetween &amp;amp; vEnd&lt;/P&gt;&lt;P&gt;set TempHTML = fso.OpenTextFile(path &amp;amp; "Master.html", 2, true)&lt;/P&gt;&lt;P&gt;TempHTML.write HtmlContent&lt;/P&gt;&lt;P&gt;TempHTML.close&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim objEmail, config&lt;/P&gt;&lt;P&gt;Set objEmail = CreateObject("CDO.Message")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;config = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/cdo/configuration/" rel="nofollow"&gt;http://schemas.microsoft.com/cdo/configuration/&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;objEmail.Configuration.Fields.Item(config &amp;amp; "sendusing") = 2 '&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://msdn.microsoft.com/en-us/library/exchange/ms873037%28v=exchg.65%29.aspx" rel="nofollow"&gt;http://msdn.microsoft.com/en-us/library/exchange/ms873037%28v=exchg.65%29.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;objEmail.Configuration.Fields.Item(config &amp;amp; "smtpserver") = "YourMailServer" 'Name or IP of Remote SMTP Server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objEmail.Configuration.Fields.Item(config &amp;amp; "smtpserverport") = 25 'Server port (typically 25)&lt;/P&gt;&lt;P&gt;objEmail.Configuration.Fields.Item(config &amp;amp; "smtpusessl") = False 'Use SSL for the connection (False or True)&lt;/P&gt;&lt;P&gt;objEmail.Configuration.Fields.Item(config &amp;amp; "smtpconnectiontimeout") = 60 'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)&lt;/P&gt;&lt;P&gt;objEmail.Configuration.Fields.Update 'End remote SMTP server configuration section&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objEmail.From = "YourFrom"&lt;/P&gt;&lt;P&gt;objEmail.To = "YourTo"&lt;/P&gt;&lt;P&gt;objEmail.Subject = "E-Mail with HTML-Body with embedded QV-Objects"&lt;/P&gt;&lt;P&gt;objEmail.CreateMHTMLBody "file://" &amp;amp; path &amp;amp; "Master.html"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objEmail.Send&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 09:58:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789994#M279351</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-02-27T09:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789995#M279352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;You are the MASTER&lt;/STRONG&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>Fri, 27 Feb 2015 10:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789995#M279352</guid>
      <dc:creator />
      <dc:date>2015-02-27T10:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789996#M279353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again!&lt;/P&gt;&lt;P&gt;Before writing the second table in the html file a sign "&amp;lt; " appears&lt;IMG alt="char.JPG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/81184_char.JPG" style="font-size: 10pt; line-height: 1.5em; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can remove it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 16:49:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789996#M279353</guid>
      <dc:creator />
      <dc:date>2015-03-18T16:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789997#M279354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change in the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i = 0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vStart = mid(HtmlContent, 1, instr(HtmlContent, "&amp;lt;!--EndFragment--&amp;gt;")) &amp;amp; chr(10)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;to&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i = 0 then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vStart = mid(HtmlContent, 1, instr(HtmlContent, "&amp;lt;!--EndFragment--&amp;gt;") &lt;SPAN style="font-size: 14pt;"&gt;&lt;STRONG style="color: #ff0000;"&gt;- 1&lt;/STRONG&gt;&lt;/SPAN&gt;) &amp;amp; chr(10)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 08:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789997#M279354</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-03-19T08:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789998#M279355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Thanks Marcus Sommer! &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;if i = 0 then&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vStart = mid(HtmlContent, 1, instr(HtmlContent, "&amp;lt;!--EndFragment--&amp;gt;") &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 14pt; font-family: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;+ 1&lt;/STRONG&gt;&lt;/SPAN&gt;) &amp;amp; chr(10)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;It works too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 09:49:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789998#M279355</guid>
      <dc:creator />
      <dc:date>2015-03-19T09:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789999#M279356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus, &lt;/P&gt;&lt;P&gt;I'm having error when i insert charts or graphs using this macro. How do we solve this problem?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2017 00:25:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/789999#M279356</guid>
      <dc:creator />
      <dc:date>2017-01-24T00:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790000#M279357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What for an error and where?&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, 24 Jan 2017 07:33:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790000#M279357</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-01-24T07:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790001#M279358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the error i'm receiving when executing the macro.&lt;/P&gt;&lt;P&gt;It seems like it can't convert CHART / GRAPH to image and to html using the script.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qlikview problem.JPG" class="jive-image image-1" src="/legacyfs/online/150763_qlikview problem.JPG" style="height: 213px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Irvin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jan 2017 00:13:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790001#M279358</guid>
      <dc:creator />
      <dc:date>2017-01-25T00:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790002#M279359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not absolutely sure but I think that a graphic-chart couldn't be exported into html - if you try it manually by right-click on the object and choosing export you will get only graphic fileformats as a choice in opposite to tables which offers various fileformats including html.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really want to include a graphic-chart within the mail you will need to extend the macro with a logic to detect the chart-type respectively you add this as a fixed information and embed this picture then between your other content - maybe something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;img src="file://///YourServer/d/Path/Chart.jpg"&amp;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>Wed, 25 Jan 2017 09:20:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790002#M279359</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-01-25T09:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790003#M279360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;Is there a way to get rid of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;that appear at the end of each table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, I need my table captions with same background color as it appears in my dashboard.&lt;/P&gt;&lt;P&gt;Any inputs on this please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2017 09:03:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790003#M279360</guid>
      <dc:creator>nesawant</dc:creator>
      <dc:date>2017-05-31T09:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790004#M279361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think for the first topic you will need an editor like notepad ++ to see which chars/object cause the displaying of this place-holder. Maybe the lengths of the various html-parts must be a bit adjusted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the second topic you need to add your formatting within the html probably with some string-functions and replacing the set formattings. If you searched with google to html-formattings you will find various sources how it could be done but it will be probably no funny work. Another way might be to include a link to a css-file within the html but this requirred a public place for the css and that the receiver of the mails are online.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;nbsp; Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2017 09:43:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790004#M279361</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-05-31T09:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790005#M279362</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;My first question did not appear correctly.&lt;/P&gt;&lt;P&gt;I get No Selections at the end of every table. How can I get rid of it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Neha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2017 09:53:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790005#M279362</guid>
      <dc:creator>nesawant</dc:creator>
      <dc:date>2017-05-31T09:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar varias tablas a un archivo html</title>
      <link>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790006#M279363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could disable them within the user-properties in tab export in the bottom-left area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 May 2017 10:07:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exportar-varias-tablas-a-un-archivo-html/m-p/790006#M279363</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-05-31T10:07:17Z</dc:date>
    </item>
  </channel>
</rss>

