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

I have summary data:

$40134399,

 

it was the result of

PROC SQL;

 SELECT SUM(PAID_AMT)  FORMT==dollar10. AS PAID_AMT;

QUIT;

it has no position, no decimal, dose not looking good.

 

 

Then I did this way:

PROC SQL;

 SELECT SUM(PAID_AMT)  FORMT==dollar10.2 AS PAID_AMT;

QUIT;

this result even worse as :

40134399.0

 

please advise, what was wrong .

 

Thank you

Joanne

 

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

Use format=dollar16.2

 

When you specify dollar10., the format is not wide enough for a long number plus commas and a dollar sign and decimal place.

--
Paige Miller

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20

shouldn't it be

 

PROC SQL;

 SELECT SUM(PAID_AMT)  FORMAT==dollar10.2 AS PAID_AMT;

QUIT;

PaigeMiller
Diamond | Level 26

Use format=dollar16.2

 

When you specify dollar10., the format is not wide enough for a long number plus commas and a dollar sign and decimal place.

--
Paige Miller
JHE
Obsidian | Level 7 JHE
Obsidian | Level 7

thank you, this is working.

 

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
  • 3 replies
  • 21936 views
  • 1 like
  • 3 in conversation