BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

Dear,

 

I have a numeric variable 'Time'containing some numbers with decimals. I need to convert the variable to chracter form. I am not getting the output i need with my codes shown below. Please help

 

Time

0

0.5

1

1.5

2

2.5

My code;

PKT=put(Time__h_,8.1);

if  PKT='0' then PKT1='PRE-DOSE';

my code generates output;

PKT1

 

0.0

0.5

1.0

1.5

2.0

2.5

 

OUTPUT i need;

PKT1

 

PRE-DOSE

0.5

1

1.5

2

2.5

 

My another code:

PKT=put(Time__h_,8.);

if  PKT='0' then PKT1='PRE-DOSE';

Output generated;

PKT1

 

0

1

1

2

2

3

 

2 REPLIES 2
mohamed_zaki
Barite | Level 11
data want;
set have;
if Time eq 0 then charvar ='PRE-DOSE';
else charvar = STRIP(PUT(TIME, best32.));
run;
PGStats
Opal | Level 21

Use format best. and left align option in PUT function.

 

data have;
input Time;
datalines;
0
0.5
1
1.5
2
2.5
;

data want;
set have;
if Time = 0 then PKT = "PRE-DOSE";
else PKT = put(Time, best. -l);
run;

proc print; run;
PG

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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
  • 1540 views
  • 2 likes
  • 3 in conversation