<?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: [HELP] ERROR: The EMF driver can not find any fonts. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917114#M361258</link>
    <description>&lt;P&gt;I also encounter this error, but when using ods to produce a rtf.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ods rtf file='filepath.rtf'
	bodytitle 
	/*columns=*/
	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;&lt;P&gt;Then I don't know what to do with this error, please help!&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 09:38:50 GMT</pubDate>
    <dc:creator>阚益凡</dc:creator>
    <dc:date>2024-02-21T09:38:50Z</dc:date>
    <item>
      <title>[HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592850#M170039</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a new programmer with sas. This afternoon when I was try to produce residual plot to check assumption of linear regression, I suffered from an error "ERROR: The EMF driver can not find any fonts.&amp;nbsp;No output will be created.&amp;nbsp;Fatal ODS error has occurred. Unable to continue processing this output destination."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glm data=Mylib.windturbine;&lt;BR /&gt;model output= velocity / ss3 solution clparm;&lt;BR /&gt;output out=resid predicted=fitted r=ores rstudent=jsr;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc loess data=resid plot(only)=(fit);&lt;BR /&gt;model ores=fitted / clm;&lt;BR /&gt;run:&lt;BR /&gt;ods rtf;&lt;BR /&gt;ods graphics off;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How could I get rid from this error?&amp;nbsp; I try to search on google but there isn't enough file about this. Please help me thx!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 22:22:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592850#M170039</guid>
      <dc:creator>wendy777</dc:creator>
      <dc:date>2019-09-30T22:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: [HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592854#M170040</link>
      <description>Did you just get SAS installed?</description>
      <pubDate>Mon, 30 Sep 2019 22:28:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592854#M170040</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-30T22:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: [HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592855#M170041</link>
      <description>&lt;P&gt;no, I installed it 2 weeks ago.&lt;/P&gt;&lt;P&gt;My friend said it's sas 9.4.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 22:29:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592855#M170041</guid>
      <dc:creator>wendy777</dc:creator>
      <dc:date>2019-09-30T22:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: [HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592856#M170042</link>
      <description>It seems like an installation error to me, something didn't get installed properly. It's likely being caused by the graphics options in proc glm, so if you turn off graphics it may work? &lt;BR /&gt;Or are your graphics getting generated properly? Did you set EMF as your file type? I don't see any code relevant to that but you may not have posted it.</description>
      <pubDate>Mon, 30 Sep 2019 22:45:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/592856#M170042</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-09-30T22:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: [HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917114#M361258</link>
      <description>&lt;P&gt;I also encounter this error, but when using ods to produce a rtf.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ods rtf file='filepath.rtf'
	bodytitle 
	/*columns=*/
	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;&lt;P&gt;Then I don't know what to do with this error, please help!&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 09:38:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917114#M361258</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T09:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: [HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917122#M361261</link>
      <description>In order to help, we would need to see:&lt;BR /&gt;The full log where the error occurs, not just the sas code itself.  When in doubt, include more of the log.  We need to see everything in the log leading up to the errors, particularly if there are warnings or errors that occurred earlier in the log. Just open a new session and run just the code you supplied already and include the full log in your post.&lt;BR /&gt;Suggestion do not reply to 'old' threads/post. Just open a new post so your question doesn't get lost in the 'old' thread.</description>
      <pubDate>Wed, 21 Feb 2024 10:33:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917122#M361261</guid>
      <dc:creator>JosvanderVelden</dc:creator>
      <dc:date>2024-02-21T10:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: [HELP] ERROR: The EMF driver can not find any fonts.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917142#M361270</link>
      <description>&lt;P&gt;Sorry, it's my first time using this community. I've posted a new one &lt;A href="https://communities.sas.com/t5/New-SAS-User/EMF-driver-cannot-find-any-fonts-when-using-ODS/td-p/917138" target="_blank" rel="noopener"&gt;at here&lt;/A&gt;&amp;nbsp;, please help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 11:41:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/HELP-ERROR-The-EMF-driver-can-not-find-any-fonts/m-p/917142#M361270</guid>
      <dc:creator>阚益凡</dc:creator>
      <dc:date>2024-02-21T11:41:01Z</dc:date>
    </item>
  </channel>
</rss>

