BookmarkSubscribeRSS Feed
ArchanaSudhir
Obsidian | Level 7

Hi,

 

I have a variable called var4N, which is  numeric type and has format pvalue6.4.

 

IN my case, var4N has the value <.0001.

 

I need to convert this to characer variaalbe.

 

If I try

 

var4=put(var4N, f6.4);

 

I am getting 0.0001, instead of <.0001.

 

Please help.

 

6 REPLIES 6
Kurt_Bremser
Super User

Well, if your numeric value is smaller than 0.0001, then you obviously need to give your format more digits to the right of the decimal point.

Try 10.8, for example:

24         data _null_;
25         x = 0.0000954;
26         x1 = put(x,10.8);
27         put x1=;
28         run;

x1=0.00009540
ArchanaSudhir
Obsidian | Level 7

I am looking specifically for value <.0001.

 

It should get converted to <.001 rather than showing .0001

 

Thanks

Archana

Reeza
Super User

I see. Did you try the PValue format?

Reeza
Super User

Use pvalue6.4 in your PUT statement if you want to character variable to match what appears in the numeric variable. 

Riteshdell
Quartz | Level 8

First try to Drop this symbol (<), then try to show this value 0.000001 in format.

 

Later you change to character variable as a Normal process. (using put).

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
  • 6 replies
  • 3559 views
  • 0 likes
  • 4 in conversation