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

Hi Community,

I have outputted the data set named  “Source_Data_Bank” using following proc summary procedure.

I need the output file’s data to be appeared with no decimals and with 1000 separators (1,000,000)

proc summary data=vtemp   nway missing maxdec=0; /* maxdec not responds */

format date date9.;

class date;

var Current One_to_30 Thirty_to_60 Sixty_to_90 Ninety_plus NPNA write_off;

output out=/*a.*/Source_Data_Bank(drop=_:)

    sum=;

run;

Could any one help me?

Thanks

Mirisage

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

You might be pleasantly surprised what happens when you add:

format Current One_to_30 Thirty_to_60 Sixty_to_90 Ninety_plus NPNA write_off comma15.0;

to the proc summary code. The COMMAw.d format accepts w values up to 32, so adjust the 15 above as needed.

View solution in original post

3 REPLIES 3
Reeza
Super User

Not directly, you need a second step to apply formats to the data, or use proc tabulate instead.

EDIT: You could go and change the template but that seems complicated when there are other solutions.

ballardw
Super User

You might be pleasantly surprised what happens when you add:

format Current One_to_30 Thirty_to_60 Sixty_to_90 Ninety_plus NPNA write_off comma15.0;

to the proc summary code. The COMMAw.d format accepts w values up to 32, so adjust the 15 above as needed.

Mirisage
Obsidian | Level 7

Hi ballardw,

Actually it was a pleasent surprise!

It exactly worked the way I wanted.

Thank you so much for your help.

Hi Reeza,

Thank you for your help too.

Warm regards

Mirisage

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 1368 views
  • 0 likes
  • 3 in conversation