<?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: Number Ranges in Excel in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49244#M6345</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;I did try the single quote (see my original post). But that is not acceptable by the business because the single quote is also showing up in the report output. I am looking for a better alternative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for suggesting though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-saspert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Aug 2011 21:46:55 GMT</pubDate>
    <dc:creator>saspert</dc:creator>
    <dc:date>2011-08-16T21:46:55Z</dc:date>
    <item>
      <title>Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49242#M6343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a requirement to display number ranges in Excel but Excel is treating them as numbers and converting them to a date format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1-5 converted to 5-Jan&lt;/P&gt;&lt;P&gt;6-10 converted to 10-Jun&lt;/P&gt;&lt;P&gt;11-14 converted to 14-Nov&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The temporary workaround I put in place was to display them with a single quote between the opening double quote and 1. But the single quote also shows up on the Excel and PDF output. Is there a better way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;/P&gt;&lt;P&gt;CREATE TABLE ACTION_ITEMS_BRKDN AS&lt;/P&gt;&lt;P&gt;SELECT&amp;nbsp; PRCHSR_CD&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,PGM_NM&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,CASE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; WHEN 1 &amp;lt;= AI_COMPLETED &amp;lt;= 5 THEN "'1 - 5" &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; WHEN 6 &amp;lt;= AI_COMPLETED &amp;lt;= 10 THEN "'6 - 10" &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; WHEN 11 &amp;lt;= AI_COMPLETED &amp;lt;= 14 THEN "'11 - 14" &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; WHEN 15 &amp;lt;= AI_COMPLETED THEN "15+" &lt;/P&gt;&lt;P&gt;&amp;nbsp; END AS AI_COMP_BKT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ,COUNT(DISTINCT MEMBER_KEY_CHAR) AS MBRS_BY_AI_COMP&lt;/P&gt;&lt;P&gt;FROM AI_COMPLETED &lt;/P&gt;&lt;P&gt;GROUP BY&lt;/P&gt;&lt;P&gt;&amp;nbsp; PRCHSR_CD&lt;/P&gt;&lt;P&gt;,PGM_NM&lt;/P&gt;&lt;P&gt;,AI_COMP_BKT&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;saspert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 15:24:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49242#M6343</guid>
      <dc:creator>saspert</dc:creator>
      <dc:date>2011-08-16T15:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49243#M6344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Excel you may add an apostrophe (single quote) at the begining of text - that should fix it. It forces Excel to treat the cell as text instead of a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For e.g. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'1-5&lt;/P&gt;&lt;P&gt;'6-10&lt;/P&gt;&lt;P&gt;'11-14&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 16:01:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49243#M6344</guid>
      <dc:creator>NickR</dc:creator>
      <dc:date>2011-08-16T16:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49244#M6345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick,&lt;/P&gt;&lt;P&gt;I did try the single quote (see my original post). But that is not acceptable by the business because the single quote is also showing up in the report output. I am looking for a better alternative.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for suggesting though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-saspert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 21:46:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49244#M6345</guid>
      <dc:creator>saspert</dc:creator>
      <dc:date>2011-08-16T21:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49245#M6346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't test it at the moment, but have you tried replacing the hyphen character with an emdash?&amp;nbsp; i.e.,—&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can either copy it from this post or type it by holding your alt button down and typing 8212 using your numeric keypad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 21:59:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49245#M6346</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-08-16T21:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49246#M6347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;Hi:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;&amp;nbsp; Excel treats your values as it guesses is best...which isn't always a guess you are happy with. If you can consider using ODS destinations (such as ODS TAGSETS.EXCELXP, for example), you can send in a control instruction that informs Excel to treat the value as TEXT. If you run the attached code, you should see two worksheets: 1) was created from the PROC SQL table and 2) was created from the original dataset. I use a SAS user-defined format for these small lookup lists, because I find it simplifies the code over a long CASE statement or set of IF statements. In either case, the TAGATTR instruction or style override in the PROC REPORT code tells Excel, when it opens the ODS generated file, to treat a particular report column as TEXT (Format:@).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;cynthia&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;proc format;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; value aic&amp;nbsp; 1-5 = ' 1 -&amp;nbsp; 5'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6-10 = ' 6 - 10'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11-14 = '11 - 14';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;data ai_completed;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; infile datalines;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; input prchsr_cd $ pgm_nm AI_COMPLETED ;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;return;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;datalines;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;AAA 1 1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;AAA 2 1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;AAA 3 3&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;BBB 4 6&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;BBB 5 8&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;CCC 6 11&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;CCC 7 14&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;proc sql;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; create table action_items_brkdn as&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; SELECT&amp;nbsp; PRCHSR_CD&amp;nbsp; ,PGM_NM, ai_completed,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; put(ai_completed,aic.) as ai_comp_bkt&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; from ai_completed&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; group by prchsr_cd, pgm_nm, ai_comp_bkt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;QUIT;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;ods tagsets.excelxp file='c:\temp\ai_brkdn.xml' style=sasweb&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; options(doc='Help' absolute_column_width='11');&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;proc report data=action_items_brkdn nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; title '1) Using TAGSETS.EXCELXP and TAGATTR';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; column prchsr_cd pgm_nm ai_completed ai_comp_bkt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define prchsr_cd / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define pgm_nm / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define ai_completed / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define ai_comp_bkt / display&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; style(column)={tagattr='Format:@'};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;proc report data=ai_completed nowd;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; title '2) Using Format with Original Dataset';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; column prchsr_cd pgm_nm ai_completed;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define prchsr_cd / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define pgm_nm / display;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp; define ai_completed / display 'AI with Format'&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; f=aic. style(column)={tagattr='Format:@'};&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 8pt; font-family: courier new,courier;"&gt;ods tagsets.excelxp close;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Aug 2011 23:43:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49246#M6347</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-08-16T23:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49247#M6348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Cynthia,&lt;/P&gt;&lt;P&gt;Thank you for the response. Just wondering if the style(column)={tagattr='Format:@'} works with excel output without using the ExcelXP Tagsets. The particular report which needs this requirement does not use tagsets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;saspert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Aug 2011 16:32:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49247#M6348</guid>
      <dc:creator>saspert</dc:creator>
      <dc:date>2011-08-22T16:32:30Z</dc:date>
    </item>
    <item>
      <title>Number Ranges in Excel</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49248#M6349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;The TAGATTR style override was designed for TAGSETS.EXCELXP. So it is not going to work for any other destination. However, if you created HTML files you could use a similar technique using HTMLSTYLE= style override. There are some tech support notes that talk about HTMLSTYLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cynthia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Aug 2011 03:17:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Number-Ranges-in-Excel/m-p/49248#M6349</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-08-24T03:17:37Z</dc:date>
    </item>
  </channel>
</rss>

