<?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: Unix SAS libname xlsx rounds numbers - I don't want it to in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738597#M230424</link>
    <description>I was able to use ODS Excel to write the sheet with the issue to Excel and the percent retains the correct format. I need to write multiple sheets to the workbook, so it's not a complete solution - though I was able to write the other sheets using LIBNAME.</description>
    <pubDate>Mon, 03 May 2021 14:03:49 GMT</pubDate>
    <dc:creator>PatMalarkey</dc:creator>
    <dc:date>2021-05-03T14:03:49Z</dc:date>
    <item>
      <title>Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738235#M230241</link>
      <description>&lt;P&gt;I have a SAS dataset with a column of percentages I calculate in my SAS (EG) program.&amp;nbsp; In my SAS dataset, pct has as many decimal places as it needs:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS Dataset.png" style="width: 488px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58906iB5D874D3A70668FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS Dataset.png" alt="SAS Dataset.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But when I use this code to write to Excel, pct gets rounded:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname xlout  xlsx "/some/unix/directory/SomeExcelFile.xlsx";
data xlout.SomeSheet;
  set SomeInputFile;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excel File.png" style="width: 354px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58907i3C794C69BF9DED51/image-size/large?v=v2&amp;amp;px=999" role="button" title="Excel File.png" alt="Excel File.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I'd like to keep the original number of decimal places and not round.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance would be greatly appreciated.&amp;nbsp; Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 17:42:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738235#M230241</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-04-30T17:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738236#M230242</link>
      <description>&lt;P&gt;It is hard to tell from photographs what values are actually in the either place.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Pick one or two of the values which appear differently in Excel and show the values you started with in your SAS dataset.&lt;/P&gt;
&lt;P&gt;For example run this and post the text from the SAS log so we can see what value you have for the first value of PCT in your SAS dataset.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  set have ;
  put pct = 32.20  / 'Hex value= ' pct hex16. ;
  stop;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 17:46:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738236#M230242</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-04-30T17:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738237#M230243</link>
      <description>&lt;P&gt;Show what that value looks like in the formula bar. I think Excel is just adding some formatting of it's own that's overriding the values but the underlying values are still in the cell. Kind of like SAS's automatic formats.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can switch to ODS EXCEL and apply your formats using proc report/print which will give you some more control over how the Excel file is created and how the values appear.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 17:55:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738237#M230243</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-04-30T17:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738248#M230246</link>
      <description>&lt;P&gt;Hi, Reeza!&lt;/P&gt;&lt;P&gt;Here is a picture including the formula bar with the cursor in one of the pct cells:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excel File Showing pct.png" style="width: 526px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58911iB41F93D170984D0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Excel File Showing pct.png" alt="Excel File Showing pct.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I added a column called calc_pct - this is the work-around we're using until I can figure this out:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excel File Showing calc_pct.png" style="width: 520px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58912iE5121638DBA7F7DF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Excel File Showing calc_pct.png" alt="Excel File Showing calc_pct.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I will look into ODS EXCEL - ODS is not my strong suit, so I prefer not to use it.&amp;nbsp; This report is part of a multi-sheet workbook and I don't know if ODS will let me do that.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 18:22:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738248#M230246</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-04-30T18:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738249#M230247</link>
      <description>&lt;P&gt;Hi, Tom!&lt;/P&gt;&lt;P&gt;Here is the log from using the code, below:&lt;/P&gt;&lt;P&gt;17 data _null_;&lt;BR /&gt;18 set SomeSASDataset ;&lt;BR /&gt;19 put pct = 32.20 / 'Hex value= ' pct hex16. ;&lt;BR /&gt;20 stop;&lt;BR /&gt;21 run;&lt;/P&gt;&lt;P&gt;pct=0.03005995341497030000&lt;BR /&gt;Hex value= 3F9EC8095358A8B0&lt;BR /&gt;NOTE: There were 1 observations read from the data set SomeSASDataset.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;cpu time 0.01 seconds&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 18:27:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738249#M230247</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-04-30T18:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738253#M230248</link>
      <description>&lt;P&gt;I don't see any rounding.&amp;nbsp; Note there is always SOME rounding.&amp;nbsp; Just check the different HEX representation that SAS creates from using the decimal approximation as the source and the exact hex representation.&lt;/P&gt;
&lt;PRE&gt;31    data test;
32      pct1=0.03005995341497030000;
33      pct2=input('3F9EC8095358A8B0',hex16.);
34
35      put (3*pct1 3*pct2) (=best32. :32.20 :hex16. /);
36    run;

pct1=0.03005995341497 0.03005995341497030000 3F9EC8095358A8AC
pct2=0.03005995341497 0.03005995341497030000 3F9EC8095358A8B0
NOTE: The data set WORK.TEST has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


37
38    libname out xlsx 'c:\downloads\round.xlsx';
NOTE: Libref OUT was successfully assigned as follows:
      Engine:        XLSX
      Physical Name: c:\downloads\round.xlsx
39    data out.test; set test; run;

NOTE: There were 1 observations read from the data set WORK.TEST.
NOTE: The data set OUT.test has 1 observations and 2 variables.
NOTE: The export data set has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.03 seconds
      cpu time            0.03 seconds


40    libname out clear;
NOTE: Libref OUT has been deassigned.
&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 503px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58913iFDAE40256A521C8E/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 18:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738253#M230248</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-04-30T18:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738254#M230249</link>
      <description>&lt;P&gt;I don't know what to tell you - it rounds for me.&amp;nbsp; Could be because I am on Unix.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 18:47:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738254#M230249</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-04-30T18:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738265#M230251</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/151653"&gt;@PatMalarkey&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will look into ODS EXCEL - ODS is not my strong suit, so I prefer not to use it.&amp;nbsp; This report is part of a multi-sheet workbook and I don't know if ODS will let me do that.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;ODS offers more significantly more options to customize your workbooks than PROC EXPORT, such as the ability to add headers, filters, formatted tables, text, table of contents, linked formula cells and of course multiple sheets per workbook. ODS EXCEL also generates a native XLSX file, whereas historically TAGSETS.EXCELXP used to create an XML file that Excel could read.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 19:28:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738265#M230251</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-04-30T19:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738268#M230252</link>
      <description>&lt;P&gt;What is the format on the variable when you export it? What version of SAS are you using? If it's really old, it may not have full XLSX support yet.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just tested Tom's code on the Linux box and no issues, it exports the whole value by default to an XLSX file. Even if I applied a format to the variable it still exported the entire value.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 69            %put &amp;amp;sysscp. &amp;amp;sysscpl.;
 LIN X64 Linux
 70             proc product_status;run;
 
 For Base SAS Software ...
    Custom version information: 9.4_M6
    Image version information: 9.04.01M6P110718&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Apr 2021 19:36:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738268#M230252</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-04-30T19:36:22Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738269#M230253</link>
      <description>&lt;P&gt;It is not Unix issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version of SAS are you running?&lt;/P&gt;
&lt;PRE&gt;PC  
42    %put &amp;amp;=sysvlong ;
SYSVLONG=9.04.01M5P091317

Unix
23   %put &amp;amp;=sysvlong ;
SYSVLONG=9.04.01M5P091317
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 662px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58917i7E29CED29B150108/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 19:37:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738269#M230253</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-04-30T19:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738594#M230421</link>
      <description>&lt;P&gt;Maybe Enterprise Guide, then?&amp;nbsp; EG connects to a linux box.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just explicitly coded format pct 20.18 in the data step where I create it and then ran the data step where I write to the XL file - no joy.&lt;/P&gt;&lt;P&gt;.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AboutEG.png" style="width: 442px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58956iD292693CD212B254/image-size/large?v=v2&amp;amp;px=999" role="button" title="AboutEG.png" alt="AboutEG.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pctProperties.png" style="width: 457px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58960iAB6125B7E263A1A2/image-size/large?v=v2&amp;amp;px=999" role="button" title="pctProperties.png" alt="pctProperties.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Excel File Showing pct.png" style="width: 526px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58961i6E6A5C09C5FF9AA0/image-size/large?v=v2&amp;amp;px=999" role="button" title="Excel File Showing pct.png" alt="Excel File Showing pct.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 13:59:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738594#M230421</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-05-03T13:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738596#M230423</link>
      <description>Please see my response to Reeza.</description>
      <pubDate>Mon, 03 May 2021 14:00:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738596#M230423</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-05-03T14:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738597#M230424</link>
      <description>I was able to use ODS Excel to write the sheet with the issue to Excel and the percent retains the correct format. I need to write multiple sheets to the workbook, so it's not a complete solution - though I was able to write the other sheets using LIBNAME.</description>
      <pubDate>Mon, 03 May 2021 14:03:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738597#M230424</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-05-03T14:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738598#M230425</link>
      <description>&lt;P&gt;What version of SAS are you running?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using the XLSX libname engine to create the XLSX file then the version of Enterprise Guide you are using to submit your SAS code should not matter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 14:04:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738598#M230425</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-05-03T14:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738600#M230427</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/151653"&gt;@PatMalarkey&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I was able to use ODS Excel to write the sheet with the issue to Excel and the percent retains the correct format. I need to write multiple sheets to the workbook, so it's not a complete solution - though I was able to write the other sheets using LIBNAME.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So have we now moved away from being worried about the values being wrong and are now talking about how to control the "format" used in to display the numbers in the XLSX file?&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 14:15:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738600#M230427</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-05-03T14:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738601#M230428</link>
      <description>&lt;P&gt;Here is a snip from a log for a program that ran on our linux box this morning:&lt;/P&gt;&lt;P&gt;NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA.&lt;BR /&gt;NOTE: SAS (r) Proprietary Software 9.4 (TS1M3)&lt;/P&gt;&lt;P&gt;NOTE: This session is executing on the Linux 2.6.32-696.30.1.el6.x86_64 (LIN X64) platform.&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 14:21:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738601#M230428</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-05-03T14:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738602#M230429</link>
      <description>&lt;P&gt;No.&amp;nbsp; The values are incorrect when I use the LIBNAME method.&amp;nbsp; They get rounded and they should not be.&amp;nbsp; ODS is one work-around, but it is less than optimal.&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 14:23:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738602#M230429</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-05-03T14:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738613#M230436</link>
      <description>ODS EXCEL supports multiple sheets and multiple tables per sheet.</description>
      <pubDate>Mon, 03 May 2021 15:13:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738613#M230436</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-05-03T15:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738618#M230437</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/151653"&gt;@PatMalarkey&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;No.&amp;nbsp; The values are incorrect when I use the LIBNAME method.&amp;nbsp; They get rounded and they should not be.&amp;nbsp; ODS is one work-around, but it is less than optimal.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;We have shown that the XLSX engine does not round the sample value you sent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if it is still doing that for you (&lt;STRONG&gt;and you are using at least SAS 9.4M5&lt;/STRONG&gt;) then open a support ticket with SAS support to have them help debug why your installation is not working.&amp;nbsp; Perhaps the issue is only triggered with the right combination of data and not just the simple example value you posted.&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 15:23:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738618#M230437</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-05-03T15:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unix SAS libname xlsx rounds numbers - I don't want it to</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738626#M230441</link>
      <description>&lt;P&gt;I see that now!&amp;nbsp; Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Link:&amp;nbsp;&amp;nbsp;&lt;A href="https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-multiple-sheet/td-p/225377" target="_self"&gt;https://communities.sas.com/t5/ODS-and-Base-Reporting/ODS-excel-multiple-sheet/td-p/225377&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 May 2021 16:05:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Unix-SAS-libname-xlsx-rounds-numbers-I-don-t-want-it-to/m-p/738626#M230441</guid>
      <dc:creator>PatMalarkey</dc:creator>
      <dc:date>2021-05-03T16:05:08Z</dc:date>
    </item>
  </channel>
</rss>

