<?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: export graphs to doc file in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417444#M280354</link>
    <description>Thank you so much&lt;BR /&gt;I appreciate that&lt;BR /&gt;thank you again&lt;BR /&gt;regards</description>
    <pubDate>Thu, 30 Nov 2017 15:49:08 GMT</pubDate>
    <dc:creator>Barkamih</dc:creator>
    <dc:date>2017-11-30T15:49:08Z</dc:date>
    <item>
      <title>export graphs to doc file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417404#M280349</link>
      <description>&lt;P&gt;&amp;nbsp;Hi guys&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just wanted&amp;nbsp;to export this graph to the word file, I tried to do it with this code. the code was correct but the graph does not appear in the word file.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html file = ' C:\Users\Barkamih\Desktop\fat % ods\ proteina curve1.doc';
proc gplot data=fit;
title1' Lactation curve of milk fat depression ';
	plot pred*time TEST_DAY_PROT_PERCENT*time/overlay;
run;quit;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;kind regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ibrahim&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 13:53:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417404#M280349</guid>
      <dc:creator>Barkamih</dc:creator>
      <dc:date>2017-11-30T13:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: export graphs to doc file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417406#M280350</link>
      <description>&lt;P&gt;Use ODS RTF, not HTML.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 14:01:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417406#M280350</guid>
      <dc:creator>collinelliot</dc:creator>
      <dc:date>2017-11-30T14:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: export graphs to doc file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417409#M280351</link>
      <description>&lt;P&gt;You are &lt;U&gt;not&lt;/U&gt; creating a Word document file. You are writing a HTML file that is incorrectly named with a .doc extension.&lt;/P&gt;
&lt;P&gt;HTML files do not embed graphics, they contain links to those graphics, and have them loaded separately by the user agent (usually a browser). This means you also have to make sure that the graphics are stored in a way that the link can be resolved when an application opens the HTML. Make proper use of the path= and gpath= options of the ods html statement, and the (url=) suboption for those.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 14:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417409#M280351</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-30T14:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: export graphs to doc file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417412#M280352</link>
      <description>&lt;P&gt;this is my path file&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token string"&gt;C:\Users\Barkamih\Desktop\fat % ods&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;could you please write the correct code for this action, because I'm new in sas&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;best regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ibrahim&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 14:25:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417412#M280352</guid>
      <dc:creator>Barkamih</dc:creator>
      <dc:date>2017-11-30T14:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: export graphs to doc file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417415#M280353</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file = 'C:\Users\Barkamih\Desktop\fat_ods\proteina_curve1.rtf';

title1' Lactation curve of milk fat depression ';

proc gplot data=fit;
plot pred*time TEST_DAY_PROT_PERCENT*time/overlay;
run;

ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Do NOT use blanks or special characters in file or path names. They are never necessary and only cause confusion and work that can easily be avoided.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2017 14:44:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417415#M280353</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-11-30T14:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: export graphs to doc file</title>
      <link>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417444#M280354</link>
      <description>Thank you so much&lt;BR /&gt;I appreciate that&lt;BR /&gt;thank you again&lt;BR /&gt;regards</description>
      <pubDate>Thu, 30 Nov 2017 15:49:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/export-graphs-to-doc-file/m-p/417444#M280354</guid>
      <dc:creator>Barkamih</dc:creator>
      <dc:date>2017-11-30T15:49:08Z</dc:date>
    </item>
  </channel>
</rss>

