<?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: Replacing missing character variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93595#M257580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your suggestion. The STRIP function worked really well !&lt;/P&gt;&lt;P&gt;Venki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Apr 2013 15:38:48 GMT</pubDate>
    <dc:creator>Venki</dc:creator>
    <dc:date>2013-04-03T15:38:48Z</dc:date>
    <item>
      <title>Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93584#M257569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello wise people,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have few character variables that have YES, NO or . characters. The missing values for these characters are shown on the dataset as dot (.)&lt;/P&gt;&lt;P&gt;I am trying to convert those dots (.) to NO and running into some issues and it returns with above 3 values in proc freq even after coding them to convert to NO in the data statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I try these commands:&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #0433ff;"&gt;if&lt;/SPAN&gt; postretrobleed=&lt;SPAN style="color: #942193;"&gt;' '&lt;/SPAN&gt; &lt;SPAN style="color: #0433ff;"&gt;then&lt;/SPAN&gt; postretrobleed=&lt;SPAN style="color: #942193;"&gt;'No'&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;or alternatively,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="color: #0433ff;"&gt;if&lt;/SPAN&gt; postretrobleed=&lt;SPAN style="color: #942193;"&gt;'.'&lt;/SPAN&gt; &lt;SPAN style="color: #0433ff;"&gt;then&lt;/SPAN&gt; postretrobleed=&lt;SPAN style="color: #942193;"&gt;'No'&lt;/SPAN&gt;; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;it still comes with YES, NO and . values for this variable.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;I am not sure what I am doing wrong or what else I could try.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Does anyone know this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Your response is much appreciated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 10px; font-family: 'Courier New';"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Venki&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 17:56:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93584#M257569</guid>
      <dc:creator>Venki</dc:creator>
      <dc:date>2013-03-31T17:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93585#M257570</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; Are there any error or warning messages in the LOG? Does your new dataset get created without errors? Do you use the new dataset name in the PROC FREQ step instead of the original dataset name? Without seeing more of your code and your data, it is impossible to comment. For example, when I run this test program using SASHELP.CLASS, with character variables, my assignment statement works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cynthia&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data fakedata;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; length postretrobleed $3;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; set sashelp.class;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; ** make some values for postretrobleed variable based;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; ** on values for SEX and HEIGHT;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; postretrobleed='Yes';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; if sex = 'M' and height le 62 then postretrobleed = '.';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; else if sex = 'F' and height gt 60 then postretrobleed=' ';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; else if sex = 'F' then postretrobleed = 'No';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc freq data=fakedata;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title '1) Before "fix" of variable';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; tables postretrobleed/&amp;nbsp; missing;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;data fixdata;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; set fakedata;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; if postretrobleed in (' ', '.') then postretrobleed='No';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;ods listing;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;proc freq data=fixdata;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; title '2) After "fix" of variable';&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;&amp;nbsp; tables postretrobleed/&amp;nbsp; missing;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-family: courier new,courier;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 18:30:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93585#M257570</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2013-03-31T18:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93586#M257571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That DOT may not be in column 1.&amp;nbsp; Maybe a nice LEFT function whould help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 18:44:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93586#M257571</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-03-31T18:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93587#M257572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the same file name as it was created. &lt;/P&gt;&lt;P&gt;The dataset was created by combining multiple (8 datasets) sometime ago and I remember that log during that time and in this current combined dataset does mention this message in the log.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;NOTE: Character values have been converted to numeric values at the places given by:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Line):(Column).&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 130:19&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;And it goes on providing the full description of that observation (i.e it lists the entire 280 variable for that one observation)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;similiarly, the log goes and describes multiple other observations that it did the same thing&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;/P&gt;&lt;P style="font-size: 8px; font-family: Courier;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;I tried the &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&lt;STRONG&gt;data fixdata;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&lt;STRONG&gt;&amp;nbsp; set fakedata;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&lt;STRONG&gt;&amp;nbsp; if postretrobleed in (' ', '.') then postretrobleed='No';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; background-color: #ffffff;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;It still returns YES NO and .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anything else that I could try?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Venki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 22:03:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93587#M257572</guid>
      <dc:creator>Venki</dc:creator>
      <dc:date>2013-03-31T22:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93588#M257573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="3823" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: Did you try Data_Null's suggestion? If not, it might provide the solution you are looking for.&amp;nbsp; This takes it one step further, namely using strip():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data fakedata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; length postretrobleed $3;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ** make some values for postretrobleed variable based;&lt;/P&gt;&lt;P&gt;&amp;nbsp; ** on values for SEX and HEIGHT;&lt;/P&gt;&lt;P&gt;&amp;nbsp; postretrobleed='Yes';&lt;/P&gt;&lt;P&gt;&amp;nbsp; if sex = 'M' and height le 62 then postretrobleed = ' .';&lt;/P&gt;&lt;P&gt;&amp;nbsp; else if sex = 'F' and height gt 60 then postretrobleed='&amp;nbsp; ';&lt;/P&gt;&lt;P&gt;&amp;nbsp; else if sex = 'F' then postretrobleed = 'No';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;data fixdata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set fakedata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if strip(postretrobleed) in ('', '.') then postretrobleed='No';&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 22:34:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93588#M257573</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-03-31T22:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93589#M257574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. I am relatively new to SAS.&lt;/P&gt;&lt;P&gt;Could you tell how I could use LEFT or STRIP function for my scenario?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Venki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 23:12:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93589#M257574</guid>
      <dc:creator>Venki</dc:creator>
      <dc:date>2013-03-31T23:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93590#M257575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. No, I tried looking it up how to use it. I am not sure how to use LEFT or STRIP function in my scenario. Anyways, I just left a reply to data_null&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 31 Mar 2013 23:14:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93590#M257575</guid>
      <dc:creator>Venki</dc:creator>
      <dc:date>2013-03-31T23:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93591#M257576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venki&lt;/P&gt;&lt;P&gt;It looks to me as if your column is really numeric, rather than character, which would explain the persistence of the dot (numeric missing value).&amp;nbsp; You see values YES and NO because the data has a format which converts numeric values (possibly 0 and 1 or 1 and 2) to a character representation.&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;Proc contents data = &lt;EM&gt;enter the dataset name here, including the libname if it is a two level name&lt;/EM&gt; ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should reveal the data structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I'm right the following code might work&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff; color: #0433ff;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff;"&gt; postretrobleed=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff; color: #942193;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff; color: #0433ff;"&gt;then&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff;"&gt; postretrobleed=&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff; color: #942193;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this now shows values of YES, NO and 0 try another number instead of 0, maybe 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2013 00:06:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93591#M257576</guid>
      <dc:creator>RichardinOz</dc:creator>
      <dc:date>2013-04-01T00:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93592#M257577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If data_null_'s guess is right then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt;"&gt;&lt;SPAN style="color: #0433ff;"&gt;if&lt;/SPAN&gt; STRIP(postretrobleed) = &lt;SPAN style="color: #942193;"&gt;'.'&lt;/SPAN&gt; &lt;SPAN style="color: #0433ff;"&gt;then&lt;/SPAN&gt; postretrobleed = &lt;SPAN style="color: #942193;"&gt;'No'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;would do the trick.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;PG&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2013 01:06:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93592#M257577</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-04-01T01:06:07Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93593#M257578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just awesome !!! Works like a charm.&lt;/P&gt;&lt;P&gt;Thank you so much&lt;/P&gt;&lt;P&gt;Venki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:08:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93593#M257578</guid>
      <dc:creator>Venki</dc:creator>
      <dc:date>2013-04-03T15:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93594#M257579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are welcome. Please give the credit to @data_null_;&amp;nbsp; it was he who guessed what the problem was. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:25:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93594#M257579</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-04-03T15:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing missing character variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93595#M257580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your suggestion. The STRIP function worked really well !&lt;/P&gt;&lt;P&gt;Venki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2013 15:38:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-missing-character-variable/m-p/93595#M257580</guid>
      <dc:creator>Venki</dc:creator>
      <dc:date>2013-04-03T15:38:48Z</dc:date>
    </item>
  </channel>
</rss>

