<?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: Exportando para PDF (Macro) in Brasil</title>
    <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481843#M54695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gustavo, o section access funciona independente da macro, porém neste caso eu acho que o section access não é a melhor maneira de fazer isso.&lt;/P&gt;&lt;P&gt;O Section Access filtra os dados &lt;STRONG style="text-decoration: underline;"&gt;de acordo com o usuário que acessa a aplicação.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Para seu caso dar certo, você vai ter que fazer uma rotina para filtrar os dados que deseja para cada usuário, mas isso de acordo com um filtro em determinado (ou em vários) campos.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jan 2016 20:01:37 GMT</pubDate>
    <dc:creator>nicolett_yuri</dc:creator>
    <dc:date>2016-01-08T20:01:37Z</dc:date>
    <item>
      <title>Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481801#M54653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Fala galera!&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Tempos atrás me perguntaram como posso automatizar a exportação de relatórios para PDF através de Macros. Confesso que há muito tempo venho fugindo desse assunto, porém estou trabalhando em um projeto e uma das atividades é essa! Acabou a fuga rsrs.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Vamos lá.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Em primeiro lugar, a fonte de informação deverá ser um Report (Relatório) do QlikView, tendo este relatório pronto podemos prosseguir com a macro.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;A biblioteca que estou utilizando para exportação é PDFCreator 1.7.3, pois esta é uma ferramenta gratuita e na exportação não houver perda na qualidade de imagem (pelo menos no meu caso). &lt;A href="http://www.pdfforge.org/pdfcreator/download" style="font-family: inherit; font-style: inherit; font-weight: inherit; color: #ec8500;" target="_blank"&gt;http://www.pdfforge.org/pdfcreator/download&lt;/A&gt;.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Bom, vamos ao código em VBScript. Cada linha de execução possui um comentário/explicação em verde e negrito.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;sub PDF&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;'Criando instância do PDFCreator&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;Set pdfjob = CreateObject("PDFCreator.clsPDFCreator&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;)&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Variáveis de configuração da biblioteca PDFCreator&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;With pdfjob&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Verificações da fila da impressora&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;If .cStart(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;/NoProcessingAtStartup&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;) = False Then&lt;BR /&gt;If .cStart(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;/NoProcessingAtStartup&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;, True) = False Then&lt;BR /&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Caso não tenha nenhum objeto na fila de impressão, termina a macro.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;Exit Sub&lt;BR /&gt;End if&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Caso tenha objeto na fila de impressão, torne a impressão visível&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;.cVisible = True&lt;BR /&gt;End If&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;.cOption(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;UseAutosave&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;) = 1 &lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Permitir o Autosave&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;.cOption(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;UseAutosaveDirectory&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;) = 1 &lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Permitir que grave no diretório&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;.cOption(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;AutosaveDirectory&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;) = Path &lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Caminho que será gravado o relatório&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;.cOption(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;AutosaveFilename&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;) = ReportName &lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Nome que será gravado o relatório&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;.cOption(&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;AutosaveFormat&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;) = 0 &lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;Formato PDF&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;.cClearCache&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Finalizando as configurações da biblioteca PDFCreator&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;End With&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Imprime o relatório&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;ActiveDocument.PrintReport ReportID, &lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;PDFCreator&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Aguarde até que o processo entre na fila de impressão&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;Do Until pdfjob.cCountOfPrintjobs = 1&lt;BR /&gt;ActiveDocument.GetApplication.Sleep 20&lt;BR /&gt;Loop&lt;BR /&gt;pdfjob.cPrinterStop = False&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Aguarda até que a fila de impressão esteja vazia&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;Do Until pdfjob.cCountOfPrintjobs = 0&lt;BR /&gt;ActiveDocument.GetApplication.Sleep 20&lt;BR /&gt;Loop&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Termina o processo&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;pdfjob.cClose&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;SPAN style="color: #008000; font-style: inherit; font-family: inherit; font-weight: inherit;"&gt;&lt;STRONG&gt;&lt;STRONG style="color: #008000; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;'&lt;/STRONG&gt;Zerando a variável&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;Set pdfjob = Nothing&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;end sub&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Praticamente essa é a forma de chamar a biblioteca do PDFCreator. Agora basta criar uma sub para chamar essa macro e então utiliza-la.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Para facilitar o entendimento, estou anexando uma aplicação de exemplo.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Observação: Fiz o teste de execução através do QlikView Client e também acesso web (IE.Plugin) e ambos funcionaram conforme o determinado.&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Qualquer dúvida por favor comentem!&lt;/P&gt;&lt;P style="font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px; margin-bottom: 1.429em; color: #333333;"&gt;Abraços&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2014 12:37:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481801#M54653</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-24T12:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481802#M54654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;O problema de todas as soluções de macros que geram pdf é que dependendo do driver PDF ela não funciona ou se mostra instável. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Me parece que esta funciona sem problemas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Valeu a dica &lt;A href="https://community.qlik.com/qlik-users/149192"&gt;Yuri Nicolett&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abraço,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/2245"&gt;Pablo Labbe&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Oct 2014 15:55:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481802#M54654</guid>
      <dc:creator>pablolabbe</dc:creator>
      <dc:date>2014-10-28T15:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481803#M54655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Estou com um projeto ativo em um cliente que gera 300 arquivos/dia e até o momento não ocorreu nenhum problema utilizando esse método.&lt;/P&gt;&lt;P&gt;Qualquer coisa vou alterando o código e postando para vocês!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2014 13:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481803#M54655</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-29T13:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481804#M54656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pessoal, esta dando erro na verificação do script. Sabem pq?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="imagem04_duvida.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/70115_imagem04_duvida.JPG.jpg" style="width: 620px; height: 617px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:01:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481804#M54656</guid>
      <dc:creator />
      <dc:date>2014-10-30T13:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481805#M54657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rodrigo, faltou você criar o nome da sub.&lt;/P&gt;&lt;P&gt;No início do seu código (primeira linha) coloque: Sub NOMEDASUB &lt;/P&gt;&lt;P&gt;e na última linha do seu código coloque: End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:37:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481805#M54657</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T13:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481806#M54658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Caso tenha maiores dúvidas, faça o download do QVW que deixei em anexo, talvez ele te ajude um pouco &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 13:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481806#M54658</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T13:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481807#M54659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yuri, fiz o que você propos, mas ainda continua com erro ali destacado na imagem...&lt;/P&gt;&lt;P&gt;&lt;IMG alt="imagem05_duvida.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/70133_imagem05_duvida.JPG.jpg" style="width: 620px; height: 700px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:24:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481807#M54659</guid>
      <dc:creator />
      <dc:date>2014-10-30T15:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481808#M54660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rodrigo, como você copiou e colou o código que passei no post, ele esta pegando os caracteres incorretamente.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Troque todos os &lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;“ por "&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;Troque todos os &lt;SPAN style="color: #333333; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif; font-size: 14px;"&gt;” por "&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 14px; font-family: 'Droid Sans', 'Trebuchet MS', Verdana, sans-serif;"&gt;Troque todos os ‘ por '&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:39:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481808#M54660</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T15:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481809#M54661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Estou corrigindo os sinais de aspas e apóstrofe no POST, assim quem copiar e colar o código não terá mais esse problema que o Rodrigo Silva teve!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 15:43:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481809#M54661</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T15:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481810#M54662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;O qlik não está encontrando o controle activex...preciso instalar algo antes do pdfcreator?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="imagem06_duvida.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/70128_imagem06_duvida.JPG.jpg" style="width: 620px; height: 465px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 16:44:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481810#M54662</guid>
      <dc:creator />
      <dc:date>2014-10-30T16:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481811#M54663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rodrigo, primeiro você precisa ter o PDFCreator instalado em seu computador.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Não esqueça também de alterar a parte de segurança da macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Módulo de Segurança Requerido: Altere o valor para "Acesso ao sistema"&lt;/P&gt;&lt;P&gt;Segurança Local Atual: Altere o valor para "Permitir Acesso ao sistema"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 16:47:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481811#M54663</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T16:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481812#M54664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yuri, fiz os procedimentos certinho, tenho PDFCreator instalado, abri a segurança da macro e agora gerou outro erro destacado na imagem abaixo...&lt;/P&gt;&lt;P&gt;&lt;IMG alt="imagem07_duvida.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/70162_imagem07_duvida.JPG.jpg" style="width: 620px; height: 465px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 17:23:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481812#M54664</guid>
      <dc:creator />
      <dc:date>2014-10-30T17:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481813#M54665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rodrigo, esses erros estão me ajudando a melhorar o post, muito obrigado ! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Você deve trocar o ReportID pelo ID do relatório que deseja imprimir. Coloque o valor entre aspas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Por exemplo: Você criou o relatório RP01, desta forma essa linha deve ficar.&lt;/P&gt;&lt;P&gt;ActiveDocument.PrintReport "RP01", "PDFCreator"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 17:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481813#M54665</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T17:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481814#M54666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yuri, meu relatório no momento está vazio. Funcionou o código, mas depois que peço para testar ele abre a caixa de diálogo normalmente, dizendo que o relatório está vazio e depois trava o programa...&lt;/P&gt;&lt;P&gt;dai tenho que fechar para continuar mexendo no mesmo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 17:52:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481814#M54666</guid>
      <dc:creator />
      <dc:date>2014-10-30T17:52:27Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481815#M54667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;começou a funcionar, mas preciso aprender mais de relatórios em outros posts!!&lt;/P&gt;&lt;P&gt;para eu colocar a macro feita, preciso criar um objeto na dash?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:05:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481815#M54667</guid>
      <dc:creator />
      <dc:date>2014-10-30T18:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481816#M54668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Não entendi sua dúvida Rodrigo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481816#M54668</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T18:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481817#M54669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;eu criei um modulo certo? Este módulo é uma macro certo? como eu coloco ela para funcionar dentro do meu dash...ou seja, seria um botão do tipo (clique aqui para gerar um PDF)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:18:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481817#M54669</guid>
      <dc:creator />
      <dc:date>2014-10-30T18:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481818#M54670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, você pode, por exemplo, criar um botão com uma ação para chamar a sua macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ao criar o botão, vá na aba Ações, selecione a ação Executar Macro (Externo -&amp;gt; Executar Macro) e coloque o nome do módulo que você criou na ação.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:23:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481818#M54670</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T18:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481819#M54671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yuri, posso te enviar o arquivo para vc analisar pq não gera?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:50:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481819#M54671</guid>
      <dc:creator />
      <dc:date>2014-10-30T18:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Exportando para PDF (Macro)</title>
      <link>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481820#M54672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pode!&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-email-small" href="mailto:yuri.nicolett@gmail.com"&gt;yuri.nicolett@gmail.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportando-para-PDF-Macro/m-p/1481820#M54672</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2014-10-30T18:58:46Z</dc:date>
    </item>
  </channel>
</rss>

