<?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: WARNING: not resolved. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519380#M140664</link>
    <description>&lt;P&gt;Use single quotes to prevent macro resolution:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format; 
value $newval 
  'Auto(%excl)' = 'Auto- Excluded (%)' 
  'Miles' = 'MILES'
  other = ' ' 
; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 07 Dec 2018 08:23:12 GMT</pubDate>
    <dc:creator>Kurt_Bremser</dc:creator>
    <dc:date>2018-12-07T08:23:12Z</dc:date>
    <item>
      <title>WARNING: not resolved.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519379#M140663</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data dsn;
   infile datalines;
   input oldval $20.;
   datalines;
   Auto(%excl)
   Miles
   ;
 run;

proc format; 
value $newval 
"Auto(%excl)"="Auto- Excluded (%)" 
"Miles"="MILES" 
other=" " 
; 
run;

data dsn1;
 set dsn;
 newvalue=put(oldval,$newval.);
run;









&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have few raw values which has % are included (see code:) , now when I try to change format using user define formats I am having warning&amp;nbsp;really not want to see any thing in log if possible. Do we have any way ( I Dont want to compress and take that out if possible ).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here, SAS assumes that I have used a macro symbol. How to rid of this warning ? Please&amp;nbsp;help if you have any idea.&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;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-12-07 at 12.01.28 AM.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25454i52DD6BE221863457/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2018-12-07 at 12.01.28 AM.png" alt="Screen Shot 2018-12-07 at 12.01.28 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 08:06:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519379#M140663</guid>
      <dc:creator>shahparth260</dc:creator>
      <dc:date>2018-12-07T08:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: not resolved.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519380#M140664</link>
      <description>&lt;P&gt;Use single quotes to prevent macro resolution:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc format; 
value $newval 
  'Auto(%excl)' = 'Auto- Excluded (%)' 
  'Miles' = 'MILES'
  other = ' ' 
; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 07 Dec 2018 08:23:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519380#M140664</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2018-12-07T08:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: WARNING: not resolved.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519609#M140763</link>
      <description>&lt;P&gt;Wow!! So easy... thanks for your help. Thanks for being helpful again. I really appreciate it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 23:59:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/WARNING-not-resolved/m-p/519609#M140763</guid>
      <dc:creator>shahparth260</dc:creator>
      <dc:date>2018-12-07T23:59:08Z</dc:date>
    </item>
  </channel>
</rss>

