BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
shahparth260
Quartz | Level 8
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;









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 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 ). 

Here, SAS assumes that I have used a macro symbol. How to rid of this warning ? Please help if you have any idea.

 

 

 

Screen Shot 2018-12-07 at 12.01.28 AM.png

 

PS
1 ACCEPTED SOLUTION
2 REPLIES 2
shahparth260
Quartz | Level 8

Wow!! So easy... thanks for your help. Thanks for being helpful again. I really appreciate it. 

PS

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 854 views
  • 2 likes
  • 2 in conversation