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

Hi,

is there a percent format with comma instead of point  ?

For example the percentn format show me this: -17.1%, but we need -17,1% format.

 

Exist this kind of format?

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hi @Rakeon,

 

You can use the NLPCTw.d format (or one of the related NLPCT... formats) with a suitable LOCALE setting (possibly your default).

280  %put %sysfunc(getoption(locale));
DE_DE
281
282  data _null_;
283  x=-0.171;
284  put x NLPCT6.1;
285  run;

-17,1%
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


286
287  options locale=EN_US;
288
289  data _null_;
290  x=-0.171;
291  put x NLPCT6.1;
292  run;

-17.1%

View solution in original post

1 REPLY 1
FreelanceReinh
Jade | Level 19

Hi @Rakeon,

 

You can use the NLPCTw.d format (or one of the related NLPCT... formats) with a suitable LOCALE setting (possibly your default).

280  %put %sysfunc(getoption(locale));
DE_DE
281
282  data _null_;
283  x=-0.171;
284  put x NLPCT6.1;
285  run;

-17,1%
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds


286
287  options locale=EN_US;
288
289  data _null_;
290  x=-0.171;
291  put x NLPCT6.1;
292  run;

-17.1%

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1 reply
  • 800 views
  • 6 likes
  • 2 in conversation