BookmarkSubscribeRSS Feed
SASPhile
Quartz | Level 8
data jan2009_v1;
set jan2009(where=(drug_name like 'TRIATE%' or drug_name like 'SEIL%'));
drug_name=upcase(drug_name);
length str $ 7;
if _N_ = 1 then RE = PRXPARSE("/ \d{1,5}\.?\d{0,4}/");
retain RE;
call PRXSUBSTR(RE,drug_name,START,LENGTH);
if START GT 0 then do;
str = SUBSTRN(drug_name,START + 1,LENGTH - 1);
output;
end;
strength=input(str,??best12.); ------------Problem area!!
run;

When I convert the str to numeric, I get missing values.
But i do it in additional data step, i get the right values.
Can we not do in single step?
2 REPLIES 2
Doc_Duke
Rhodochrosite | Level 12
Read about using the OUTPUT statement. If you include an OUTPUT statement in a DATA step, then the default output at the end of the DATA step is not done.
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Also, I believe that your SAS log will reveal the variable value for "str" when your DO / END code is *NOT* executed. And you are masking the condition by coding the "??" by the way which hinders your ability to debug your program when executed - not a good idea in my experience.

And so I suggest you use the following SAS "debugging technique" statement in your program at the "end" of the DATA step and possibly adding it in other places (set the "nnn" value to identify your location in the program when invoked):

PUTLOG ">TAGnnn> I am here!" / _all_;

And be sure that you have the maximum amount of SAS Log output generated by your program by coding:

OPTIONS SOURCE SOURCE2;
* OPTIONS MACROGEN SYMBOLGEN MPRINT; /* uncomment as needed */


Scott Barry
SBBWorks, Inc.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 615 views
  • 0 likes
  • 3 in conversation