<?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 Imagem PowerPoint in Brasil</title>
    <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909009#M30645</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Não esqueça de habilitar a segurança de execução da macro: dentro do editor de módulo (ctrl + m), deixe as opções:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Módulo de segurança requerido: Acesso ao sistema&lt;/P&gt;&lt;P&gt;Segurança local atual: Permitir acesso ao sistema&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quando for fazer o teste da macro, faça pelo qvClient ou então por acesso web pelo IE Plugin (Ajax pode não funcionar).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Aug 2015 13:32:30 GMT</pubDate>
    <dc:creator>nicolett_yuri</dc:creator>
    <dc:date>2015-08-04T13:32:30Z</dc:date>
    <item>
      <title>Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909004#M30640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Senhores, poderiam me dizer se é possivel eu exportar imagens do qlikview para o powerpoint, se sim como faria isso, hoje eu faço algo semelhante do excel para o powerpoint via macro, é possivel da mesma forma fazer no qlik, obrigado.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 20:33:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909004#M30640</guid>
      <dc:creator>paulomulato</dc:creator>
      <dc:date>2015-08-03T20:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909005#M30641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Paulo, é possível somente por macro ou se você tiver o Nprinting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Segue um exemplo de código de macro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 20:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909005#M30641</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2015-08-03T20:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909006#M30642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yuri, voce pode enviar o codigo no corpo da mensagem, estou usando o personal edition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 20:41:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909006#M30642</guid>
      <dc:creator>paulomulato</dc:creator>
      <dc:date>2015-08-03T20:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909007#M30643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vou te passar o código de macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Os objetos CH01 até o CH05 são gráficos de exemplo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14386346542894036" jivemacro_uid="_14386346542894036"&gt;
&lt;P&gt;Sub ppt&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'An array with the objects you want to export to powerpoint&lt;/P&gt;
&lt;P&gt;Dim myArray(4)&lt;/P&gt;
&lt;P&gt;myArray(0) = "CH01"&lt;/P&gt;
&lt;P&gt;myArray(1) = "CH02"&lt;/P&gt;
&lt;P&gt;myArray(2) = "CH03"&lt;/P&gt;
&lt;P&gt;myArray(3) = "CH04"&lt;/P&gt;
&lt;P&gt;myArray(4) = "CH05"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'Create ppt object&lt;/P&gt;
&lt;P&gt;Set objPPT = CreateObject("PowerPoint.Application")&lt;/P&gt;
&lt;P&gt;objPPT.Visible = True&lt;/P&gt;
&lt;P&gt;Set objPresentation = objPPT.Presentations.Add&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'Apply a template if you want one&lt;/P&gt;
&lt;P&gt;'objPresentation.ApplyTemplate _&lt;/P&gt;
&lt;P&gt;&amp;nbsp; '&amp;nbsp; ("C:\mytemplate.potx")&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'For each object in the array create a new slide and paste it.&lt;/P&gt;
&lt;P&gt;For each item in myArray&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Set PPSlide = objPresentation.Slides.Add(1,11)&lt;/P&gt;
&lt;P&gt;ActiveDocument.GetSheetObject(item).CopyBitmapToClipboard&lt;/P&gt;
&lt;P&gt;PPSlide.Shapes.Paste&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Next&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;'Clean up&lt;/P&gt;
&lt;P&gt;Set PPSlide = Nothing&lt;/P&gt;
&lt;P&gt;Set PPPres = Nothing&lt;/P&gt;
&lt;P&gt;Set PPApp = Nothing&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;End Sub&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 20:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909007#M30643</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2015-08-03T20:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909008#M30644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Obrigado.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2015 20:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909008#M30644</guid>
      <dc:creator>paulomulato</dc:creator>
      <dc:date>2015-08-03T20:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909009#M30645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Não esqueça de habilitar a segurança de execução da macro: dentro do editor de módulo (ctrl + m), deixe as opções:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Módulo de segurança requerido: Acesso ao sistema&lt;/P&gt;&lt;P&gt;Segurança local atual: Permitir acesso ao sistema&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quando for fazer o teste da macro, faça pelo qvClient ou então por acesso web pelo IE Plugin (Ajax pode não funcionar).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 13:32:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909009#M30645</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2015-08-04T13:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: Exportar Imagem PowerPoint</title>
      <link>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909010#M30646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Já conseguiu a resposta? Se sim, escolha uma e marque como "Correta" para fechar o tópico e nos ajudar a manter a comunidade organizada&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jul 2016 18:27:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Brasil/Exportar-Imagem-PowerPoint/m-p/909010#M30646</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2016-07-10T18:27:11Z</dc:date>
    </item>
  </channel>
</rss>

