<?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: How to Export to Excel while keeping formats? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755397#M238381</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; One of your issues is with the value for the FILE= option in your ODS statement:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1626792968337.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61429i82A871E8CE129C66/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1626792968337.png" alt="Cynthia_sas_0-1626792968337.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The C: part of the path is highlighted in pink because SAS OnDemand for Academics is a Linux/Unix box and does NOT have a C: drive. So this reference to C: will generate an error, as you showed:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_1-1626793124280.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61430i08AC4A4481FE8DA0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_1-1626793124280.png" alt="Cynthia_sas_1-1626793124280.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So, when the OnDemand server went to look for c:/home... location, it didn't find it and so it looked in the default working folder on the server, didn't find it and issued an error message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you are using SAS OnDemand for Academics, you should always start your paths with /home or else with a ~ (tilde). For example, if I wanted to create an ODS result file for ODS EXCEL on my SAS OnDemand account, I would write the output to my RESULTS folder (that I created under Files (Home) top node. And so my ODS EXCEL statement would look like this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods excel file='&lt;FONT color="#0000FF"&gt;/home/&amp;lt;myuserID&amp;gt;&lt;/FONT&gt;&lt;FONT color="#008000"&gt;/RESULTS/example1.xlsx&lt;/FONT&gt;';&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;ods excel file='&lt;FONT color="#0000FF"&gt;~&lt;/FONT&gt;&lt;FONT color="#008000"&gt;/RESULTS/example2.xlsx&lt;/FONT&gt;';&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My tendency is not to write files to my SASUSER folder on the OnDemand server because I prefer to create my own folders under Files (Home) top node in which to store my output. Under my Files (Home) location, I have a folder for Programming 1 (EPG1V2), folders for other classes, a folder for PROGRAMS, and a folder for RESULTS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You can always find the correct path to a folder on the OnDemand server, by clicking on S&lt;STRONG&gt;erver Files and Folders&lt;/STRONG&gt;, then clicking to expand the &lt;STRONG&gt;Files (Home)&lt;/STRONG&gt; top node. Make a folder to hold your results. Maybe call it RESULTS. Right click on that folder and choose &lt;STRONG&gt;Properties&lt;/STRONG&gt;. The &lt;STRONG&gt;Location&lt;/STRONG&gt; field in the &lt;STRONG&gt;Properties&lt;/STRONG&gt; window will show you the path you need to use for that folder. For a FILE= option, you'd only need to add your filename and extension to the back end of the path from the Properties window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You are getting a WARNING on the WEIGHT variable because you don't have a COLUMN statement in PROC REPORT. It's generally a best practice to use a COLUMN statement so you can control the order of the variables and statistics that you want to place on the report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Until you have a working program, you will not be able to tell whether your format is working or not. I notice that you are trying to format WEIGHT as a string. Just remember that Excel can be very picky about numbers formatted as text, so even if you use TAGATTR, you may still see the "number stored as text" warning when you open the result file in Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; This user group paper &lt;A href="https://support.sas.com/resources/papers/proceedings11/266-2011.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings11/266-2011.pdf&lt;/A&gt; discussed the use of TAGATTR in the context of TAGSETS.EXCELXP, but the concepts also apply to ODS EXCEL. You will definitely want to use the TAGATTR if you want to send a Microsoft format for your number from SAS to Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jul 2021 15:38:53 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2021-07-20T15:38:53Z</dc:date>
    <item>
      <title>How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754683#M238045</link>
      <description>&lt;P&gt;Here is my code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data ForKatie;&lt;BR /&gt;set floridam;&lt;BR /&gt;format Department_Name $Deptfmt.;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my file path:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"/home/u58028011/sasuser.v94/ForKatie";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've tried using ODS and Proc Export, but it doesn't seem to like either of those. Are there any quick ways any of y'all can help me with?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 20:46:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754683#M238045</guid>
      <dc:creator>FrustratedBio</dc:creator>
      <dc:date>2021-07-16T20:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754689#M238050</link>
      <description>&lt;P&gt;But ODS Excel should run fine. See example below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format;
value $num
 '1'="One"
 '2'="Two"
 ;
run;

data test;
 today=today();
 format today date9.;
 number='1';
 format number $num.;
run;


ods excel file="H:\output_temp\test.xlsx" ;
proc report data=test;
  columns _all_;
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Jul 2021 21:16:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754689#M238050</guid>
      <dc:creator>Rydhm</dc:creator>
      <dc:date>2021-07-16T21:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754690#M238051</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/370997"&gt;@FrustratedBio&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Here is my code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data ForKatie;&lt;BR /&gt;set floridam;&lt;BR /&gt;format Department_Name $Deptfmt.;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my file path:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"/home/u58028011/sasuser.v94/ForKatie";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried using ODS and Proc Export, but it doesn't seem to like either of those. Are there any quick ways any of y'all can help me with?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;"Doesn't seem to like" is awful vague.&lt;BR /&gt;&lt;BR /&gt;Are there errors in the log?: Post the code and log in a code box opened with the "&amp;lt;&amp;gt;" to maintain formatting of error messages.&lt;BR /&gt;&lt;BR /&gt;No output? Post any log in a code box.&lt;BR /&gt;&lt;BR /&gt;Unexpected output? Provide input data in the form of data step code pasted into a code box, the actual results and the expected results. Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the "&amp;lt;/&amp;gt;" icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At least show the code attempted.&lt;/P&gt;
&lt;P&gt;Better would be to provide data with the "formats" that Excel doesn't like with the definition of the format $deptfmt..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 21:32:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754690#M238051</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-07-16T21:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754725#M238070</link>
      <description>&lt;P&gt;Check 'tagattr=' style.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods excel file='c:\temp\temp.xlsx';
proc report data=sashelp.class nowd;
define weight/display style={tagattr='format:@ type:string'};
run;
ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Jul 2021 10:52:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/754725#M238070</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-07-17T10:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755101#M238221</link>
      <description>1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;NOTE: ODS statements in the SAS Studio environment may disable some output features.&lt;BR /&gt;73&lt;BR /&gt;74 ods excel file='c:/home/u58028011/sasuser.v94/010120-052621_COVID Pandemic Associate Events_ViaOne.xlsx';&lt;BR /&gt;75 proc report data=FloridaM nowd;&lt;BR /&gt;76 define weight/display style={tagattr='format:@ type:string'};&lt;BR /&gt;77 run;&lt;BR /&gt;&lt;BR /&gt;WARNING: weight is not in the report definition.&lt;BR /&gt;NOTE: There were 1107 observations read from the data set WORK.FLORIDAM.&lt;BR /&gt;NOTE: PROCEDURE REPORT used (Total process time):&lt;BR /&gt;real time 18.01 seconds&lt;BR /&gt;user cpu time 17.84 seconds&lt;BR /&gt;system cpu time 0.17 seconds&lt;BR /&gt;memory 170427.92k&lt;BR /&gt;OS Memory 231644.00k&lt;BR /&gt;Timestamp 07/19/2021 07:12:03 PM&lt;BR /&gt;Step Count 74 Switch Count 1&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 45061&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 30&lt;BR /&gt;Involuntary Context Switches 22&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 5952&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;78 ods excel close;&lt;BR /&gt;ERROR: Physical file does not exist, /pbr/biconfig/940/Lev1/SASApp/c:/home/u58028011/sasuser.v94/010120-052621_COVID Pandemic&lt;BR /&gt;Associate Events_ViaOne.xlsx.&lt;BR /&gt;79&lt;BR /&gt;80 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;92&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;These are the notes&lt;BR /&gt;&lt;BR /&gt;This is the attempted code&lt;BR /&gt;&lt;BR /&gt;ods excel file='c:/home/u58028011/sasuser.v94/010120-052621_COVID Pandemic Associate Events_ViaOne.xlsx';&lt;BR /&gt;proc report data=FloridaM nowd;&lt;BR /&gt;define weight/display style={tagattr='format:@ type:string'};&lt;BR /&gt;run;&lt;BR /&gt;ods excel close;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Mon, 19 Jul 2021 19:13:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755101#M238221</guid>
      <dc:creator>FrustratedBio</dc:creator>
      <dc:date>2021-07-19T19:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755103#M238222</link>
      <description>It went through, but not all the way.....see reply below with code and log.</description>
      <pubDate>Mon, 19 Jul 2021 19:15:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755103#M238222</guid>
      <dc:creator>FrustratedBio</dc:creator>
      <dc:date>2021-07-19T19:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755312#M238352</link>
      <description>&lt;P&gt;I just gave you an example . You can find other format in Excel:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1626782641774.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61411i9E10CF4BF34A13B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1626782641774.png" alt="Ksharp_0-1626782641774.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And also could find out more example about 'tagattrs' in support.sas.com .&lt;/P&gt;
&lt;P&gt;Or Calling&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13549"&gt;@Cynthia_sas&lt;/a&gt;&amp;nbsp; , she have more experience about this style .&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 12:05:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755312#M238352</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-07-20T12:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to Export to Excel while keeping formats?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755397#M238381</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; One of your issues is with the value for the FILE= option in your ODS statement:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_0-1626792968337.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61429i82A871E8CE129C66/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_0-1626792968337.png" alt="Cynthia_sas_0-1626792968337.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The C: part of the path is highlighted in pink because SAS OnDemand for Academics is a Linux/Unix box and does NOT have a C: drive. So this reference to C: will generate an error, as you showed:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cynthia_sas_1-1626793124280.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/61430i08AC4A4481FE8DA0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cynthia_sas_1-1626793124280.png" alt="Cynthia_sas_1-1626793124280.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So, when the OnDemand server went to look for c:/home... location, it didn't find it and so it looked in the default working folder on the server, didn't find it and issued an error message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you are using SAS OnDemand for Academics, you should always start your paths with /home or else with a ~ (tilde). For example, if I wanted to create an ODS result file for ODS EXCEL on my SAS OnDemand account, I would write the output to my RESULTS folder (that I created under Files (Home) top node. And so my ODS EXCEL statement would look like this:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;ods excel file='&lt;FONT color="#0000FF"&gt;/home/&amp;lt;myuserID&amp;gt;&lt;/FONT&gt;&lt;FONT color="#008000"&gt;/RESULTS/example1.xlsx&lt;/FONT&gt;';&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;ods excel file='&lt;FONT color="#0000FF"&gt;~&lt;/FONT&gt;&lt;FONT color="#008000"&gt;/RESULTS/example2.xlsx&lt;/FONT&gt;';&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My tendency is not to write files to my SASUSER folder on the OnDemand server because I prefer to create my own folders under Files (Home) top node in which to store my output. Under my Files (Home) location, I have a folder for Programming 1 (EPG1V2), folders for other classes, a folder for PROGRAMS, and a folder for RESULTS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You can always find the correct path to a folder on the OnDemand server, by clicking on S&lt;STRONG&gt;erver Files and Folders&lt;/STRONG&gt;, then clicking to expand the &lt;STRONG&gt;Files (Home)&lt;/STRONG&gt; top node. Make a folder to hold your results. Maybe call it RESULTS. Right click on that folder and choose &lt;STRONG&gt;Properties&lt;/STRONG&gt;. The &lt;STRONG&gt;Location&lt;/STRONG&gt; field in the &lt;STRONG&gt;Properties&lt;/STRONG&gt; window will show you the path you need to use for that folder. For a FILE= option, you'd only need to add your filename and extension to the back end of the path from the Properties window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You are getting a WARNING on the WEIGHT variable because you don't have a COLUMN statement in PROC REPORT. It's generally a best practice to use a COLUMN statement so you can control the order of the variables and statistics that you want to place on the report.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Until you have a working program, you will not be able to tell whether your format is working or not. I notice that you are trying to format WEIGHT as a string. Just remember that Excel can be very picky about numbers formatted as text, so even if you use TAGATTR, you may still see the "number stored as text" warning when you open the result file in Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; This user group paper &lt;A href="https://support.sas.com/resources/papers/proceedings11/266-2011.pdf" target="_blank"&gt;https://support.sas.com/resources/papers/proceedings11/266-2011.pdf&lt;/A&gt; discussed the use of TAGATTR in the context of TAGSETS.EXCELXP, but the concepts also apply to ODS EXCEL. You will definitely want to use the TAGATTR if you want to send a Microsoft format for your number from SAS to Excel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jul 2021 15:38:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-Export-to-Excel-while-keeping-formats/m-p/755397#M238381</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2021-07-20T15:38:53Z</dc:date>
    </item>
  </channel>
</rss>

