<?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: Output contains missing character and numeric values which needs to converted in to 'No data at. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526315#M143309</link>
    <description>&lt;P&gt;adding the output here. Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 11 Jan 2019 10:19:22 GMT</pubDate>
    <dc:creator>Jinu302000</dc:creator>
    <dc:date>2019-01-11T10:19:22Z</dc:date>
    <item>
      <title>Output contains missing character and numeric values which needs to converted in to 'No data at.....</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526311#M143308</link>
      <description>&lt;P&gt;Output contains missing character and numeric values which needs to converted in to 'No data at this time'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Attached is a sample output where Name is a character field (length is &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; and ID is a numeric field.&lt;/P&gt;&lt;P&gt;Any blank values in each columns (Name and ID), then the blank values should be changed to 'No data at this time'.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This should be checked for 10-15 outputs and need to change all blank values to '&lt;SPAN&gt;'No data at this time'.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Character length varies from field to field and all the blank values should be converted to the mentioned text with out truncation.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How this can be done for all the outputs (10 or more). What is the best way to deal with this? any suggestions on this, please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 10:09:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526311#M143308</guid>
      <dc:creator>Jinu302000</dc:creator>
      <dc:date>2019-01-11T10:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Output contains missing character and numeric values which needs to converted in to 'No data at.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526315#M143309</link>
      <description>&lt;P&gt;adding the output here. Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 10:19:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526315#M143309</guid>
      <dc:creator>Jinu302000</dc:creator>
      <dc:date>2019-01-11T10:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Output contains missing character and numeric values which needs to converted in to 'No data at.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526324#M143311</link>
      <description>When you sat ‘for all the outputs’, do you meab that you want to do this for all obsetvations or?</description>
      <pubDate>Fri, 11 Jan 2019 11:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526324#M143311</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-01-11T11:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Output contains missing character and numeric values which needs to converted in to 'No data at.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526343#M143321</link>
      <description>&lt;P&gt;Assign a proper format:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
infile cards dsd dlm=' ' truncover;
input name $ id;
cards;
KL 1
JL 2
KK
JK
 5
;
run;

proc format;
value $c_empty
  " " = "No data at this time"
;
value n_empty
  . = "No data at this time"
;
run;

data want;
set have;
format name $c_empty. id n_empty.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 11 Jan 2019 12:57:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/526343#M143321</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-01-11T12:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Output contains missing character and numeric values which needs to converted in to 'No data at.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/527699#M143923</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;SPAN&gt;Kurt Bremser&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="login-bold"&gt;for providing the solution for this. Appreciate your help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;also i just wanted to know if a date field is missing (along with other dates fields are having values with different format), can we use this procedure?&amp;nbsp; then how can we display the same 'No data at this time' for blank date field. Is it doable? Any idea.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;Thanks very much for your help and support!!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 13:29:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/527699#M143923</guid>
      <dc:creator>Jinu302000</dc:creator>
      <dc:date>2019-01-16T13:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Output contains missing character and numeric values which needs to converted in to 'No data at.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/527702#M143925</link>
      <description>&lt;P&gt;You can add a special date format in proc format that uses an existing date format for non-missing values:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;value d_empty
  . = "No data at this time"
  other = [ddmmyy10.]
;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 16 Jan 2019 13:42:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/527702#M143925</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2019-01-16T13:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Output contains missing character and numeric values which needs to converted in to 'No data at.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/530426#M145054</link>
      <description>&lt;P&gt;@&amp;nbsp;KurtBremser:- Thank you, Sir for your wonderful help and support. Thanks very much!!&lt;/P&gt;</description>
      <pubDate>Sun, 27 Jan 2019 06:13:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Output-contains-missing-character-and-numeric-values-which-needs/m-p/530426#M145054</guid>
      <dc:creator>Jinu302000</dc:creator>
      <dc:date>2019-01-27T06:13:22Z</dc:date>
    </item>
  </channel>
</rss>

