<?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: to change the font size of  the report in Enterprise Guide in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4422#M1397</link>
    <description>I am little bit confused where exactly i have to put that style statement in my proc print code if i want to use #1 method of yours.&lt;BR /&gt;
for example if this is my code then&lt;BR /&gt;
&lt;BR /&gt;
PROC PRINT DATA=WORK.SORTTempTableSorted&lt;BR /&gt;
	NOOBS&lt;BR /&gt;
	WIDTH=MINIMUM&lt;BR /&gt;
	SPLIT='*'&lt;BR /&gt;
	;&lt;BR /&gt;
	VAR Emp_id;&lt;BR /&gt;
RUN;</description>
    <pubDate>Thu, 30 Aug 2007 16:10:22 GMT</pubDate>
    <dc:creator>deleted_user</dc:creator>
    <dc:date>2007-08-30T16:10:22Z</dc:date>
    <item>
      <title>to change the font size of  the report in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4420#M1395</link>
      <description>I have stored process which generates an output in any browser.&lt;BR /&gt;
In my Stored process the final output comes through the list data task.&lt;BR /&gt;
Can you tell me how can I change the font of my overall report to font_size=10 and font_face=arial..</description>
      <pubDate>Thu, 30 Aug 2007 12:21:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4420#M1395</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-08-30T12:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: to change the font size of  the report in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4421#M1396</link>
      <description>Hi, Sunil:&lt;BR /&gt;
  You would either &lt;BR /&gt;
1) have to change the PROC PRINT code that is generated by the LIST Data task. There are style= overrides that you can use to change the font_face and font_style from the LIST Data task. Or, &lt;BR /&gt;
2) you could check whether you have the possibility to use a custom CSS file at your site (assuming that your SP will ALWAYS be returning results to a web browser).&lt;BR /&gt;
 &lt;BR /&gt;
  To use the style= overrides, you would need to add this code to your proc print (in bold):&lt;BR /&gt;
[pre]&lt;BR /&gt;
ods html file='c:\temp\testfont.html' style=egdefault;&lt;BR /&gt;
proc print data=sashelp.class &lt;B&gt;&lt;BR /&gt;
   style(table)={font_face="Arial" font_size=10pt}&lt;BR /&gt;
   style(header)={font_face="Arial" font_size=10pt}&lt;BR /&gt;
   style(data)={font_face="Arial" font_size=10pt}&lt;BR /&gt;
   style(total)={font_face="Arial" font_size=10pt}&lt;BR /&gt;
   style(obs)={font_face="Arial" font_size=10pt}&lt;BR /&gt;
   style(obsheader)={font_face="Arial" font_size=10pt}&lt;BR /&gt;
   style(grandtotal)={font_face="Arial" font_size=10pt};&lt;/B&gt;&lt;BR /&gt;
sum age height;&lt;BR /&gt;
var name age height;&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
  &lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
Note how these overrides all go on the PROC PRINT statement which will end with one and only 1 semi-colon after the last style override. &lt;BR /&gt;
 &lt;BR /&gt;
For more help with style= overrides in your stored process, you might consider contacting Tech Support or looking at the ODS documentation. For help with #2 and your stored process, you need to contact Tech Support.&lt;BR /&gt;
 &lt;BR /&gt;
As long as you are returning your SP results to a web browser, you should see these overrides used. However, other client applications in the BI platform, may not use the style= overrides, depending on which output type the client application is using to receive the results. (For example, Web Report Studio or PowerPoint through the SAS Add-in may not use these overrides or may use some, but not all of the overrides.)&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 30 Aug 2007 15:44:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4421#M1396</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-08-30T15:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: to change the font size of  the report in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4422#M1397</link>
      <description>I am little bit confused where exactly i have to put that style statement in my proc print code if i want to use #1 method of yours.&lt;BR /&gt;
for example if this is my code then&lt;BR /&gt;
&lt;BR /&gt;
PROC PRINT DATA=WORK.SORTTempTableSorted&lt;BR /&gt;
	NOOBS&lt;BR /&gt;
	WIDTH=MINIMUM&lt;BR /&gt;
	SPLIT='*'&lt;BR /&gt;
	;&lt;BR /&gt;
	VAR Emp_id;&lt;BR /&gt;
RUN;</description>
      <pubDate>Thu, 30 Aug 2007 16:10:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4422#M1397</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2007-08-30T16:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: to change the font size of  the report in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4423#M1398</link>
      <description>Try putting it anywhere on the PROC PRINT statement...here's the whole statement. It starts with the word 'PROC' and ends with the semi-colon after the SPLIT= option:&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;B&gt;PROC&lt;/B&gt; PRINT DATA=WORK.SORTTempTableSorted&lt;BR /&gt;
NOOBS&lt;BR /&gt;
WIDTH=MINIMUM&lt;BR /&gt;
SPLIT='*'&lt;BR /&gt;
*** put them here above the semi-colon ***&lt;BR /&gt;
&lt;B&gt;;&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 30 Aug 2007 16:27:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4423#M1398</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2007-08-30T16:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: to change the font size of  the report in Enterprise Guide</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4424#M1399</link>
      <description>You can also experiment with the different styles in the results options.  If you are using SAS Report or HTML output, some of the predefined styles have larger fonts.  &lt;BR /&gt;
&lt;BR /&gt;
For example, if you want the "Mr. Magoo" settings, you might try the "Magnify" style.&lt;BR /&gt;
&lt;BR /&gt;
Chris</description>
      <pubDate>Thu, 30 Aug 2007 18:04:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/to-change-the-font-size-of-the-report-in-Enterprise-Guide/m-p/4424#M1399</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2007-08-30T18:04:03Z</dc:date>
    </item>
  </channel>
</rss>

