BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sas_learnsups
Obsidian | Level 7

 

I have a variable with values as follows:

med_qty

100ml

2*96

2*100g

 

I want to make the above data into :

 

 dose    dosage      qty  

 100                        ml

   96         2    

 100          2            g

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Here is one way:

 

data want (drop=med_qty);
  set have;
  if anyalpha(med_qty) then do;
   qty=substr(med_qty,anyalpha(med_qty));
   med_qty=substr(med_qty,1,anyalpha(med_qty)-1);
  end;
  dose=input(scan(med_qty,1,'*'),8.);
  dosage=input(scan(med_qty,2,'*'),8.);
run;

Art, CEO, AnalystFinder.com

 

View solution in original post

4 REPLIES 4
art297
Opal | Level 21

Here is one way:

 

data want (drop=med_qty);
  set have;
  if anyalpha(med_qty) then do;
   qty=substr(med_qty,anyalpha(med_qty));
   med_qty=substr(med_qty,1,anyalpha(med_qty)-1);
  end;
  dose=input(scan(med_qty,1,'*'),8.);
  dosage=input(scan(med_qty,2,'*'),8.);
run;

Art, CEO, AnalystFinder.com

 

novinosrin
Tourmaline | Level 20
data have;
input  med_qty $20.;
datalines;
100ml
2*96
2*100g
;

data want;
set have;
if index( med_qty, '*')>0 then do;
dose=compress(scan(med_qty,2,'*'),,'kd');
dosage=scan(med_qty,1,'*');
qty=compress(med_qty,'*','d');
end;
else do;
dose=compress(med_qty,,'kd');
qty=compress(med_qty,'*','d');
end;
run;

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
  • 4 replies
  • 692 views
  • 2 likes
  • 3 in conversation