<?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 Excelxp - currency style in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50252#M6429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to have some of the fields in my excel output formatted as currency and I need them to be formatted w/ 4 digits after the decimal point.&amp;nbsp; How would I go about that?&amp;nbsp; I tried this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var billamt﻿﻿/ style=﻿﻿﻿{tagattr='format:Currency'];&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;P&gt;...but I don't know how to indicate I want 4 digits after the decimal point rather than just 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;﻿﻿&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Nov 2011 14:19:15 GMT</pubDate>
    <dc:creator>Chip</dc:creator>
    <dc:date>2011-11-18T14:19:15Z</dc:date>
    <item>
      <title>Excelxp - currency style</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50252#M6429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to have some of the fields in my excel output formatted as currency and I need them to be formatted w/ 4 digits after the decimal point.&amp;nbsp; How would I go about that?&amp;nbsp; I tried this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var billamt﻿﻿/ style=﻿﻿﻿{tagattr='format:Currency'];&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;P&gt;...but I don't know how to indicate I want 4 digits after the decimal point rather than just 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;﻿﻿&lt;/P&gt;&lt;P&gt;﻿&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 14:19:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50252#M6429</guid>
      <dc:creator>Chip</dc:creator>
      <dc:date>2011-11-18T14:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Excelxp - currency style</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50253#M6430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; This is how I would do it. Excel shows me 4 decimal places for sales and 2 decimal places for returns.&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods tagsets.excelxp file='c:\temp\currency.xml'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; style=sasweb;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; proc report data=sashelp.shoes nowd;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; column product sales returns;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; define product / group;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; define sales / style(column)={tagattr='$#,##0.0000'};&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; define returns / style(column)={tagattr='$#,##0.00'};&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp; run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt;ods _all_ close;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 14:36:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50253#M6430</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2011-11-18T14:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Excelxp - currency style</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50254#M6431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Perfect.&amp;nbsp; Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2011 14:51:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Excelxp-currency-style/m-p/50254#M6431</guid>
      <dc:creator>Chip</dc:creator>
      <dc:date>2011-11-18T14:51:24Z</dc:date>
    </item>
  </channel>
</rss>

