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).

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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