BookmarkSubscribeRSS Feed
MohamedS
Obsidian | Level 7
Do anyone know how to make a positive integer format between Parenthesis i.e.

(45%).

thanks
1 REPLY 1
BrunoSilva
Quartz | Level 8
try this i hope it help

proc format;
picture pctpfmt
low - high = '(000%)'
( prefix = '(' );run;

data teste;
format a pctpfmt.;

a=25;
output;
a=54;
output;
a=100;
output;
a=160;
output;
run;

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
  • 1 reply
  • 999 views
  • 0 likes
  • 2 in conversation