<?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: Question: If you could change just ONE thing... in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/120#M34</link>
    <description>I second this.  A GUI to create layouts would be excellent.</description>
    <pubDate>Thu, 20 Apr 2006 21:17:21 GMT</pubDate>
    <dc:creator>kdoherty_fau_edu</dc:creator>
    <dc:date>2006-04-20T21:17:21Z</dc:date>
    <item>
      <title>Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/112#M26</link>
      <description>Here's something I'm curious about. &lt;BR /&gt;
&lt;BR /&gt;
If you could change just &lt;B&gt;ONE&lt;/B&gt; thing about ODS what would it be?? Pick your piece of ODS. Post your change. Let's talk.&lt;BR /&gt;
&lt;BR /&gt;
ODS OUTPUT?&lt;BR /&gt;
ODS HTML?&lt;BR /&gt;
ODS RTF?&lt;BR /&gt;
ODS PDF?&lt;BR /&gt;
ODS MARKUP?&lt;BR /&gt;
&lt;BR /&gt;
cynthia</description>
      <pubDate>Fri, 10 Mar 2006 20:00:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/112#M26</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2006-03-10T20:00:48Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/113#M27</link>
      <description>Better support for flowing in layouts.</description>
      <pubDate>Mon, 13 Mar 2006 23:25:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/113#M27</guid>
      <dc:creator>JackHamilton</dc:creator>
      <dc:date>2006-03-13T23:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/114#M28</link>
      <description>Better support for the "Page x of Y" in RTF and PDF when you &lt;BR /&gt;
mix tables and graphs. And it would be nice to have a common &lt;BR /&gt;
method of asking for this,  no matter what ODS destination you are using.</description>
      <pubDate>Tue, 14 Mar 2006 01:44:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/114#M28</guid>
      <dc:creator>rtemp001</dc:creator>
      <dc:date>2006-03-14T01:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/115#M29</link>
      <description>I can respond to the rtf side of the question and partially to the rest. In SAS 9.1, you can modify a style element to use the PAGEOF syntax without having to burn a title statement. This gets around the problem of graphics not honoring the spec unles the NOGTITLE option is used. &lt;BR /&gt;
&lt;BR /&gt;
I'll insert some text to show this technique. Notice the use of a "universal escape sequence". The escape alerts the process that a function is being used. The use of the universal escape means you do not have to set up the escapechar anytime you use this style. &lt;BR /&gt;
&lt;BR /&gt;
This gives you the global usage you might use. I believe there is a restriction with PDF and graphics, but I can't answer with a lot of detail on that issue.&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
 proc template;&lt;BR /&gt;
   define style mystyle;&lt;BR /&gt;
   parent=styles.default;&lt;BR /&gt;
   Replace PageNo from TitlesAndFooters  /  &lt;BR /&gt;
      font = fonts("strongFont")&lt;BR /&gt;
      cellpadding = 0 cellspacing = 0  &lt;BR /&gt;
      just=r vjust=t&lt;BR /&gt;
   posttext= " of  (*ESC*){lastpage}" ;&lt;BR /&gt;
   ;&lt;BR /&gt;
 end;&lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ods rtf file="pageno.rtf" style = mystyle ;&lt;BR /&gt;
&lt;BR /&gt;
proc print data=sashelp.class ; run; &lt;BR /&gt;
proc gplot data=sashelp.class ; plot age*height; run; &lt;BR /&gt;
proc print data=sashelp.class ; run; &lt;BR /&gt;
&lt;BR /&gt;
ods rtf close ; &lt;BR /&gt;
[\pre]</description>
      <pubDate>Tue, 14 Mar 2006 18:14:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/115#M29</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-03-14T18:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/116#M30</link>
      <description>We're aware that the PAGEOF functionality does not work with &lt;BR /&gt;
ODS PRINTER and SAS/Graph.  Customers have reported it to us more than once!&lt;BR /&gt;
&lt;BR /&gt;
 -- David Kelley, SAS</description>
      <pubDate>Tue, 14 Mar 2006 20:52:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/116#M30</guid>
      <dc:creator>David_SAS</dc:creator>
      <dc:date>2006-03-14T20:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/117#M31</link>
      <description>I know this is probably a stretch for SAS right now, but it would be great to have an ODS EXCEL option.  I know you can achieve this with ods html file='filename.xls" or ods csv or with DDE, but all these methods seem clumsy.</description>
      <pubDate>Sun, 16 Apr 2006 08:31:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/117#M31</guid>
      <dc:creator>mlamias</dc:creator>
      <dc:date>2006-04-16T08:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/118#M32</link>
      <description>How about using the ODS tagsets.Excelxp destination?   &lt;BR /&gt;
&lt;BR /&gt;
It's been around since SAS 9.0.  It works best with SAS 9.1.3.&lt;BR /&gt;
&lt;BR /&gt;
You can get the latest version here.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="http://support.sas.com/rnd/base/topics/odsmarkup/" target="_blank"&gt;http://support.sas.com/rnd/base/topics/odsmarkup/&lt;/A&gt; &lt;BR /&gt;
&lt;BR /&gt;
Not a stretch at all...</description>
      <pubDate>Mon, 17 Apr 2006 20:06:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/118#M32</guid>
      <dc:creator>Eric_SAS</dc:creator>
      <dc:date>2006-04-17T20:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/119#M33</link>
      <description>A graphical user interface for ODS LAYOUT would be great.</description>
      <pubDate>Tue, 18 Apr 2006 07:58:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/119#M33</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-18T07:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/120#M34</link>
      <description>I second this.  A GUI to create layouts would be excellent.</description>
      <pubDate>Thu, 20 Apr 2006 21:17:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/120#M34</guid>
      <dc:creator>kdoherty_fau_edu</dc:creator>
      <dc:date>2006-04-20T21:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/121#M35</link>
      <description>I vote for that too.&lt;BR /&gt;
&lt;BR /&gt;
The GUI needs to be available through EG.</description>
      <pubDate>Fri, 21 Apr 2006 17:42:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/121#M35</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-21T17:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/122#M36</link>
      <description>But not only through Enterprise Guide!</description>
      <pubDate>Mon, 24 Apr 2006 17:38:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/122#M36</guid>
      <dc:creator>DouglasMartin</dc:creator>
      <dc:date>2006-04-24T17:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/123#M37</link>
      <description>A general thing: make all ODS destinations use the exact same syntax to achieve the same results.&lt;BR /&gt;
&lt;BR /&gt;
If you are looking for something more specific: in the printer destinations, let titles print even when not the first thing on a page.  Currently we have to use ODS PDF TEXT to get around this, and I dislike having to code all my titles twice, once for printer destinations and once for HTML.</description>
      <pubDate>Mon, 24 Apr 2006 18:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/123#M37</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-24T18:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/124#M38</link>
      <description>We have this type of functionality in EG 4.1 using the new SAS 9 Report Object Model (ROM) ODS output type.  See the presentation that includes that at SUGI 31 @ &lt;A href="http://support.sas.com/rnd/papers/" target="_blank"&gt;http://support.sas.com/rnd/papers/&lt;/A&gt; (EG 4.1 overview- &lt;A href="http://support.sas.com/rnd/papers/sugi31/neweg41.pdf" target="_blank"&gt;http://support.sas.com/rnd/papers/sugi31/neweg41.pdf&lt;/A&gt; see page 4 for some screenshots.)&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Stephen</description>
      <pubDate>Mon, 24 Apr 2006 18:53:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/124#M38</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2006-04-24T18:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/125#M39</link>
      <description>I need to use ods tagsets.excelxpfor creating a report using an existing template.&lt;BR /&gt;
The template contains all the header information in a required format.&lt;BR /&gt;
What option should I use to output my dataset values into those specific cells (meant for values in the template)???</description>
      <pubDate>Thu, 20 Aug 2009 04:47:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/125#M39</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-08-20T04:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/126#M40</link>
      <description>Hi:&lt;BR /&gt;
  It would be better to start a new post than to tack a question onto a very different posting.&lt;BR /&gt;
 &lt;BR /&gt;
  The bad news is that there is no option to do what you ask. &lt;BR /&gt;
&lt;BR /&gt;
ODS TAGSETS.EXCELXP does not write to an existing Excel template (.xlt) file. Every time you run TAGSETS.EXCELXP, it creates a new, complete workbook. TAGSETS.EXCELXP will not add to an existing workbook; will not update specific rows/cells/columns in an existing workbook; will not update or add cells to an Excel template (.xlt) file. Every time ExcelXP runs it creates a new file, by overwriting the name specified in the FILE= option if it already exists or by creating a new file, if the name does not exist.&lt;BR /&gt;
 &lt;BR /&gt;
  This is the kind of scenario (writing to an existing workbook or Excel template) that folks use DDE for.&lt;BR /&gt;
 &lt;BR /&gt;
  You might try to replicate your header information using the TAGSETS.EXCELXP options to set PRINT headers and footers.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 20 Aug 2009 05:13:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/126#M40</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-08-20T05:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/127#M41</link>
      <description>Hi cynthia, thanks for suggestion, please watch the thread "Exploring tagsets.excelxp for existing templates " .</description>
      <pubDate>Thu, 20 Aug 2009 05:32:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/127#M41</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-08-20T05:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/128#M42</link>
      <description>ODS HTML and simplified pagination control  &lt;BR /&gt;
&lt;BR /&gt;
Today, I am forced to use a "hidden" BY variable to force pagination every "nn" detail output rows.  This requires me to use PAGEBY and also NOBYLINE along with my BY statement declaration.  Also, influencing the SAS ODS HTML behavior requires a pre-processor DATA step used to "count rows" and force a new (virtual) page which is actually a new HTML-generated table to get the desired HTML windowing size needed.&lt;BR /&gt;
&lt;BR /&gt;
I have attempted to use the PROC TEMPLATE "hack" to get the "freeze column header" for the most simplistic PROC PRINT instances, but this alternative approach seems to fail if you attempt to use BY/PAGEBY processing with the TEMPLATE override.&lt;BR /&gt;
&lt;BR /&gt;
And, this type of functionality needs to work on the IBM mainframe platform as well as others, if that is anyone else's concern, as it is for me.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for asking, Cynthia!!&lt;BR /&gt;
&lt;BR /&gt;
Scott Barry&lt;BR /&gt;
SBBWorks, Inc.</description>
      <pubDate>Thu, 20 Aug 2009 14:32:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/128#M42</guid>
      <dc:creator>sbb</dc:creator>
      <dc:date>2009-08-20T14:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/129#M43</link>
      <description>fix tagsets.excelxp for non-US locale where NLS support on z/OS introduces problems for prx---- functions used to identify data-types&lt;BR /&gt;
&lt;BR /&gt;
Alternatively, could suitable compiled versions of latest tagset.excelxp be made available for download to ebcdic-in-foreign-locales.&lt;BR /&gt;
Alternatively, bypass the need for prx--- in the tagset code by providing the data-types as object attribute when the reporting objects are created.&lt;BR /&gt;
&lt;BR /&gt;
- - my experience was in z/OS on SAS9.1.3sp4 - &lt;BR /&gt;
- - has the SAS9.2 versions eliminated the need for characters among the "extended" ebcdic character-set?&lt;BR /&gt;
 &lt;BR /&gt;
PeterC</description>
      <pubDate>Fri, 21 Aug 2009 13:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/129#M43</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2009-08-21T13:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/130#M44</link>
      <description>Create a Super ODS destination for Microsoft Excel, Word, and/or Powerpoint.&lt;BR /&gt;
&lt;BR /&gt;
Functionality&lt;BR /&gt;
&lt;BR /&gt;
1. create a worksheet X for a lot of good stuff !!!!&lt;BR /&gt;
&lt;BR /&gt;
1a. create a chart object 1 and place in location 1 on worksheet x.&lt;BR /&gt;
1b. create a chart object 2 and place in location 2 on worksheet x.&lt;BR /&gt;
1c. create a chart object 3 and place in location 3 on worksheet x.&lt;BR /&gt;
1d. create a text box object 1 and place in location 4 on worksheet x.&lt;BR /&gt;
&lt;BR /&gt;
etc...&lt;BR /&gt;
&lt;BR /&gt;
2a. send sas report 1 to location 5 on worksheet x.&lt;BR /&gt;
2b. send sas report 2 to location 6 on worksheet x.&lt;BR /&gt;
2c. send sas report 3 to location 7 on worksheet x.&lt;BR /&gt;
etc...&lt;BR /&gt;
&lt;BR /&gt;
3a. create pivot table 1 and place it in location 8 on worksheet x.&lt;BR /&gt;
3b. create pivot table 2 and place it in location 9 on worksheet x.&lt;BR /&gt;
3c. create pivot table 3 and place it in location 10 on worksheet x.&lt;BR /&gt;
etc...&lt;BR /&gt;
&lt;BR /&gt;
Allow the destination to be called multiple times for each report, pivot table, or chart that you want to send to Excel, Word, or Powerpoint.&lt;BR /&gt;
&lt;BR /&gt;
Wow!</description>
      <pubDate>Fri, 21 Aug 2009 20:28:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/130#M44</guid>
      <dc:creator>wildhogs</dc:creator>
      <dc:date>2009-08-21T20:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Question: If you could change just ONE thing...</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/131#M45</link>
      <description>&amp;gt;A general thing: make all ODS destinations use the exact same syntax to achieve the same results.&lt;BR /&gt;
&lt;BR /&gt;
Seconded, destinations should absolutely be transparent [same for graphics devices, but that's another story] unless some features don't exist for a particular destination, in which case they would simply be ignored.&lt;BR /&gt;
&lt;BR /&gt;
Even more important though: an easier way to alter default looks than proc template. Or is it just me who haven't felt like spending the time to get my head around its hideous syntax? &lt;BR /&gt;
Maybe a report editor where one makes visual changes, and the template code is created?</description>
      <pubDate>Wed, 26 Aug 2009 22:41:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Question-If-you-could-change-just-ONE-thing/m-p/131#M45</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2009-08-26T22:41:37Z</dc:date>
    </item>
  </channel>
</rss>

