<?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: ODS Excel - font Arial results in Helvetica in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540813#M22484</link>
    <description>Hi:&lt;BR /&gt;  Well, a style template will apply to ANY destination, where you use it. Not just ODS Excel. And it will not be global for everyone, unless you make the style template in an item store where it is available to everyone. So implementing a "global" style will be hard if it is for more programmers than just you.&lt;BR /&gt;&lt;BR /&gt;  However, if you need help with a template, I suggest opening a track with Tech Support. I think it's just an issue of specifying fonts in the wrong place or the wrong way, but I'm not in a position to test code for the rest of the day.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
    <pubDate>Wed, 06 Mar 2019 15:52:41 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-03-06T15:52:41Z</dc:date>
    <item>
      <title>ODS Excel - font Arial results in Helvetica</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540762#M22481</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the code below, the resulting font is Helvetica. To my eye the fonts are indistinguishable in Excel, however, it is important to have the font set to Arial.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc template;
	define style mystyle; 
		class header, footer, data/ fontfamily = "Arial" fontsize= 14pt	bordercolor = black borderstyle = solid	;
		class systemtitle / fontfamily = "Arial" fontsize= 14pt textalign=left;
end; 

ods excel file= "&amp;amp;excel_export_path." style=mystyle options(start_at="2,1" embedded_titles="yes" sheet_interval="none");
	proc report data=sashelp.class  SPLIT='|' spanrows ;
		column (Sex Name Weight);
	run; 
ods excel close;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Mar 2019 13:23:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540762#M22481</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-03-06T13:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel - font Arial results in Helvetica</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540774#M22482</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; That's not what I observe when I do this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="arial_used_ods_excel.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27701i5057BDDDCF088A32/image-size/large?v=v2&amp;amp;px=999" role="button" title="arial_used_ods_excel.png" alt="arial_used_ods_excel.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps there is something wrong with your template. Since I can see that Arial works in a simple style override, there's a workaround for you and so, no need for a template. If you are wedded to the template idea, then you may have to work with Tech Support on why your template didn't work as you wanted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2019 14:04:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540774#M22482</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-03-06T14:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel - font Arial results in Helvetica</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540779#M22483</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason I have this as a template is because I want it to be a global setting for everything inside the ods excel, not just for a particular report/row/column. Is there a work-around for this?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2019 14:18:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540779#M22483</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-03-06T14:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: ODS Excel - font Arial results in Helvetica</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540813#M22484</link>
      <description>Hi:&lt;BR /&gt;  Well, a style template will apply to ANY destination, where you use it. Not just ODS Excel. And it will not be global for everyone, unless you make the style template in an item store where it is available to everyone. So implementing a "global" style will be hard if it is for more programmers than just you.&lt;BR /&gt;&lt;BR /&gt;  However, if you need help with a template, I suggest opening a track with Tech Support. I think it's just an issue of specifying fonts in the wrong place or the wrong way, but I'm not in a position to test code for the rest of the day.&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 06 Mar 2019 15:52:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-Excel-font-Arial-results-in-Helvetica/m-p/540813#M22484</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-03-06T15:52:41Z</dc:date>
    </item>
  </channel>
</rss>

