<?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: EMF driver cannot find any fonts when using ODS in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917151#M41043</link>
    <description>&lt;P&gt;ok, but it's a little bit long, so I cut it in a txt file&lt;/P&gt;</description>
    <pubDate>Wed, 21 Feb 2024 12:40:14 GMT</pubDate>
    <dc:creator>阚益凡</dc:creator>
    <dc:date>2024-02-21T12:40:14Z</dc:date>
    <item>
      <title>EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917138#M41037</link>
      <description>&lt;P&gt;I've encountered an error when using ods to produce an output in rtf.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to analyse a data set called marine, and I wanted to deliver the result to the ods to produce a rtf as the book said. However, I discovered the EMF driver cannot find the fonts in my SAS, as picture 1 indicates.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="picture 1" style="width: 866px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93967i020F7CC2B2EE28EB/image-size/large?v=v2&amp;amp;px=999" role="button" title="picture of log.png" alt="picture 1" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;picture 1&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I tried to reload the fonts in my SAS, and do as SAS support said on &lt;A href="https://support.sas.com/kb/15/682.html" target="_blank"&gt;https://support.sas.com/kb/15/682.html&lt;/A&gt; ,&amp;nbsp;just remove the old fonts and reinstalled the fonts from the zip. However, this still cannot work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So now I don't know what to do with this, please help!!&lt;/P&gt;&lt;P&gt;Here are the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ods rtf file='D:\Marine.rtf'
	bodytitle 
	/*columns=*/
	sasdate
	style=normal
	startpage=no;
ods noproctitle;
	proc means data=sasbook.marine
		mean max min
		maxdec=2;
	class family;
	title 'Whales and Sharks';
	run;
	proc print data=sasbook.marine;
	format length 8.2;
	run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And the result viewer is fine:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="_1-1708515099447.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/93968i32A31DB6F232BA7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="_1-1708515099447.png" alt="_1-1708515099447.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Tks a lot!!!&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>Wed, 21 Feb 2024 11:33:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917138#M41037</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T11:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917145#M41038</link>
      <description>&lt;P&gt;Can you replace the single quotes with double quotes. or copy the code below and run that?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods rtf file="filepath.rtf"
	bodytitle 
	sasdate
	style=rtf
	startpage=no;
ods noproctitle;
	proc means data=sasbook.marine
		mean max min
		maxdec=2;
	class family;
	title "Whales and Sharks";
	run;
	proc print data=sasbook.marine;
	format length 8.2;
	run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Feb 2024 12:00:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917145#M41038</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-21T12:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917146#M41039</link>
      <description>Still not, both of them have the same error message as the picture shows.</description>
      <pubDate>Wed, 21 Feb 2024 12:09:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917146#M41039</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T12:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917147#M41040</link>
      <description>Are you using SAS Studio or SAS DMS or other?&lt;BR /&gt;Is this a local installation (on your windows workstation / laptop)?</description>
      <pubDate>Wed, 21 Feb 2024 12:16:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917147#M41040</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-21T12:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917148#M41041</link>
      <description>SAS with DBCS on my laptop&lt;BR /&gt;I am not sure if any fonts are missing when installing it, or could it be some other mistakes?</description>
      <pubDate>Wed, 21 Feb 2024 12:20:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917148#M41041</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T12:20:23Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917149#M41042</link>
      <description>&lt;P&gt;Please run the code below and post the log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put &amp;amp;sysscpl;
%put &amp;amp;sysvlong;
proc options option=SASUSER; run;
proc options option=CONFIG; run;
proc options option=JREOPTIONS; run;
proc options option=SASHELP; run;
proc options option=FONTSLOC; run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Feb 2024 12:27:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917149#M41042</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-21T12:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917151#M41043</link>
      <description>&lt;P&gt;ok, but it's a little bit long, so I cut it in a txt file&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 12:40:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917151#M41043</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T12:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917158#M41044</link>
      <description>You are running a very old version of SAS (SAS9.4 M2 - released in 2014). Your steps to update the fonts should have worked. But I do not have access to the old SAS version for testing. I suggest you: a) contact sas technical support (&lt;A href="https://service.sas.com/csm" target="_blank"&gt;https://service.sas.com/csm&lt;/A&gt; - get help) and open a request for support; or b) reinstall SAS using a software depot with the latest release, SAS9.4 M8.</description>
      <pubDate>Wed, 21 Feb 2024 13:25:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917158#M41044</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-21T13:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: EMF driver cannot find any fonts when using ODS</title>
      <link>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917161#M41045</link>
      <description>Ok, thanks</description>
      <pubDate>Wed, 21 Feb 2024 13:43:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/m-p/917161#M41045</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T13:43:34Z</dc:date>
    </item>
  </channel>
</rss>

