<?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 markup title in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918246#M44381</link>
    <description>&lt;P&gt;If your undesired A3 and A4 appear in a single cell, which there is no way we can tell from that picture, I would guess the vertical offset is the result of the displayed line being wrapped to fit the cell width. Which may require some control on the length of text but no clue how to do that in such an approach.&lt;/P&gt;</description>
    <pubDate>Wed, 28 Feb 2024 16:00:17 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2024-02-28T16:00:17Z</dc:date>
    <item>
      <title>Ods markup title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918169#M44380</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods markup file="Report.xls" tagset=tagsets.test    ;
	title1 j = c bold 'A1';
	title2 j = c "A2";
	title3 j = l " A3" j = r " A4";

proc print data=Sashelp.Class;
run;
title1;
title2;
title3;
ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc template; 
 define tagset tagsets.test; 
 parent=tagsets.phtml; 
 define event doc; 
 start: 
 put HTMLDOCTYPE NL NL NL; 
 put '&amp;lt;html xmlns:o="urn:schemas-microsoft-com:office:office"' NL; 
 put 'xmlns:x="urn:schemas-microsoft-com:office:excel"' NL; 
 put 'xmlns="http://www.w3.org/TR/REC-html40"&amp;gt;' NL; 
 
 finish: 
 put "&amp;lt;/html&amp;gt;" NL; 
 end; 
 
 define event doc_head; 
 start: 
 put "&amp;lt;head&amp;gt;" NL; 
 put VALUE NL; 
 put "&amp;lt;style&amp;gt;" NL "&amp;lt;!--" NL; 
 trigger alignstyle; 
 put "--&amp;gt;" NL "&amp;lt;/style&amp;gt;" NL; 
 finish: 
 
 put " &amp;lt;!--[if gte mso 9]&amp;gt;&amp;lt;xml&amp;gt;" NL; 
 put " &amp;lt;x:ExcelWorkbook&amp;gt;" NL; 
 put " &amp;lt;x:ExcelWorksheets&amp;gt;" NL; 
 put " &amp;lt;x:ExcelWorksheet&amp;gt;" NL; 
 put " &amp;lt;x:Name&amp;gt;Sheet1&amp;lt;/x:Name&amp;gt;" NL; 
 put " &amp;lt;x:WorksheetOptions&amp;gt;" NL; 
 put " &amp;lt;x:Zoom&amp;gt;100&amp;lt;/x:Zoom&amp;gt;" NL; 
 put " &amp;lt;x:Selected/&amp;gt;" NL; 
 put " &amp;lt;x:Panes&amp;gt;" NL; 
 put " &amp;lt;x:Pane&amp;gt;" NL; 
 put " &amp;lt;x:Number&amp;gt;3&amp;lt;/x:Number&amp;gt;" NL; 
 put " &amp;lt;x:ActiveCol&amp;gt;1&amp;lt;/x:ActiveCol&amp;gt;" NL; 
 put " &amp;lt;/x:Pane&amp;gt;" NL; 
 put " &amp;lt;/x:Panes&amp;gt;" NL; 
 put " &amp;lt;x:ProtectContents&amp;gt;False&amp;lt;/x:ProtectContents&amp;gt;" NL; 
 put " &amp;lt;x:ProtectObjects&amp;gt;False&amp;lt;/x:ProtectObjects&amp;gt;" NL; 
 put " &amp;lt;x:ProtectScenarios&amp;gt;False&amp;lt;/x:ProtectScenarios&amp;gt;" NL; 
 put " &amp;lt;/x:WorksheetOptions&amp;gt;" NL; 
 put " &amp;lt;/x:ExcelWorksheet&amp;gt; " NL; 
 put " &amp;lt;x:WindowHeight&amp;gt;8070&amp;lt;/x:WindowHeight&amp;gt; " NL; 
 put " &amp;lt;x:WindowWidth&amp;gt;10380&amp;lt;/x:WindowWidth&amp;gt; " NL; 
 put " &amp;lt;x:WindowTopX&amp;gt;480&amp;lt;/x:WindowTopX&amp;gt; " NL; 
 put " &amp;lt;x:WindowTopY&amp;gt;120&amp;lt;/x:WindowTopY&amp;gt; " NL; 
 put " &amp;lt;x:ProtectStructure&amp;gt;False&amp;lt;/x:ProtectStructure&amp;gt; " NL; 
 put " &amp;lt;x:ProtectWindows&amp;gt;False&amp;lt;/x:ProtectWindows&amp;gt;" NL; 
 put " &amp;lt;/x:ExcelWorkbook&amp;gt;" NL; 
 put " &amp;lt;/xml&amp;gt;&amp;lt;![endif]--&amp;gt; " NL; 
 put "&amp;lt;/head&amp;gt;" NL; 
 end; 
 end; 
run; 
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result.xls&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_0-1709112972725.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/94183i8F51E52339FBD0C6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_0-1709112972725.png" alt="Daily1_0-1709112972725.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Daily1_0-1709112645372.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/94182iDF478454968263B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Daily1_0-1709112645372.png" alt="Daily1_0-1709112645372.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please do not mention using ODS Excel. I am already aware that the correct way to display the answer is by using ODS Excel.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 09:38:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918169#M44380</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2024-02-28T09:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Ods markup title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918246#M44381</link>
      <description>&lt;P&gt;If your undesired A3 and A4 appear in a single cell, which there is no way we can tell from that picture, I would guess the vertical offset is the result of the displayed line being wrapped to fit the cell width. Which may require some control on the length of text but no clue how to do that in such an approach.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 16:00:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918246#M44381</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2024-02-28T16:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Ods markup title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918287#M44382</link>
      <description>Hi, The OTHER alternative is to use ODS TAGSETS.EXCELXP to create a Microsoft XML file that Excel can open or to use ODS CSVALL to make a CSV file with titles. However, you don't have as much control over the titles and alignment with ODS CSVALL.&lt;BR /&gt;Cynthia</description>
      <pubDate>Wed, 28 Feb 2024 18:26:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918287#M44382</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2024-02-28T18:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Ods markup title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918367#M44387</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I'm using ODS markup with the tagset for the font_face='DVOT-SurekhMR'. Only ODS markup reflects the font_face='DVOT-SurekhMR'; other ODS Excel formats do not work with this font. That's why I'm using ODS markup. If you have any suggestions for why this font is not working with other ODS formats, please let me know.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 05:23:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918367#M44387</guid>
      <dc:creator>Daily1</dc:creator>
      <dc:date>2024-02-29T05:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: Ods markup title</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918465#M44390</link>
      <description>&lt;P&gt;Hi:&lt;BR /&gt;That doesn't make sense. If ODS uses the font with ODS Markup, then as long as the font is registered on your system, other ODS destinations should also be able to use it.&lt;BR /&gt;This is sounding like a question for Tech Support so they can open a case and look at your registry settings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Also, I don't see any reference to your font in the code that you posted. When you work with Tech Support, you'll have to send them ALL your code and a sample of your data.&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Thu, 29 Feb 2024 19:17:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Ods-markup-title/m-p/918465#M44390</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2024-02-29T19:17:03Z</dc:date>
    </item>
  </channel>
</rss>

