<?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: Write missing as '' instead of . in ODS Excel using proc print in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789904#M252844</link>
    <description>&lt;P&gt;Thanks a million Kurt, i knew there was an option but colud not find i. Searched for printmiss.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the excel file as below. (Lot's of code above the get the data in the right way.&amp;nbsp; The challenge here was the spacer column. That could have been solved by creating the data with space culmn as a char column. However I also need blank lines to fit a format, and then the '.' representation would create havoc. Again thanks a lot&lt;/P&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="PaalNavestad_0-1642057494924.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/67364iEA7AE2B15DD9BCCE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PaalNavestad_0-1642057494924.png" alt="PaalNavestad_0-1642057494924.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc sort data = work.struct_withNbrsSum_trsp;
	by group shipper_id;
run;
options missing=" ";
ods excel file = '/shared/winshare/teams_no/SAS_General/subsurface/prod/GGRE_OUT/STFMonthlyShipper/testxlsx.xlsx' 
	 options(sheet_interval="bygroup"
           suppress_bylines="yes"
           sheet_label=" "
           embedded_titles="yes"
           embed_titles_once="yes" 
           );

proc print data=work.struct_withNbrsSum_trsp ;
	by group;
	
run;

ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 13 Jan 2022 07:08:05 GMT</pubDate>
    <dc:creator>PaalNavestad</dc:creator>
    <dc:date>2022-01-13T07:08:05Z</dc:date>
    <item>
      <title>Write missing as '' instead of . in ODS Excel using proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789894#M252836</link>
      <description>&lt;P&gt;Hi, I have to create data in a sepcific form in Excel. I need blank rows and blank columns to conform with some Excel Macros that are using the data. I can easily create the structure, but when I'm outputting the data I get missing represented as . instead of balnk as the macro need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm pretty certain that I seen some tips on this before but can't find them now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can somebody please point me in the right direction&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 06:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789894#M252836</guid>
      <dc:creator>PaalNavestad</dc:creator>
      <dc:date>2022-01-13T06:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Write missing as '' instead of . in ODS Excel using proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789897#M252839</link>
      <description>&lt;P&gt;How do you create the spreadsheet?&lt;/P&gt;
&lt;P&gt;Look at&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options missing=" ";&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jan 2022 06:59:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789897#M252839</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-01-13T06:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Write missing as '' instead of . in ODS Excel using proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789898#M252840</link>
      <description>try use " options missing=''; "</description>
      <pubDate>Thu, 13 Jan 2022 07:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789898#M252840</guid>
      <dc:creator>japelin</dc:creator>
      <dc:date>2022-01-13T07:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Write missing as '' instead of . in ODS Excel using proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789904#M252844</link>
      <description>&lt;P&gt;Thanks a million Kurt, i knew there was an option but colud not find i. Searched for printmiss.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created the excel file as below. (Lot's of code above the get the data in the right way.&amp;nbsp; The challenge here was the spacer column. That could have been solved by creating the data with space culmn as a char column. However I also need blank lines to fit a format, and then the '.' representation would create havoc. Again thanks a lot&lt;/P&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="PaalNavestad_0-1642057494924.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/67364iEA7AE2B15DD9BCCE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PaalNavestad_0-1642057494924.png" alt="PaalNavestad_0-1642057494924.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc sort data = work.struct_withNbrsSum_trsp;
	by group shipper_id;
run;
options missing=" ";
ods excel file = '/shared/winshare/teams_no/SAS_General/subsurface/prod/GGRE_OUT/STFMonthlyShipper/testxlsx.xlsx' 
	 options(sheet_interval="bygroup"
           suppress_bylines="yes"
           sheet_label=" "
           embedded_titles="yes"
           embed_titles_once="yes" 
           );

proc print data=work.struct_withNbrsSum_trsp ;
	by group;
	
run;

ods excel close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Jan 2022 07:08:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789904#M252844</guid>
      <dc:creator>PaalNavestad</dc:creator>
      <dc:date>2022-01-13T07:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Write missing as '' instead of . in ODS Excel using proc print</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789906#M252846</link>
      <description>&lt;P&gt;Thanks a lot I had already gotten the tip and it works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 07:09:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Write-missing-as-instead-of-in-ODS-Excel-using-proc-print/m-p/789906#M252846</guid>
      <dc:creator>PaalNavestad</dc:creator>
      <dc:date>2022-01-13T07:09:20Z</dc:date>
    </item>
  </channel>
</rss>

