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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1602 views
  • 2 likes
  • 3 in conversation