BookmarkSubscribeRSS Feed
larrytex
Calcite | Level 5

I have a field with the input layout of '$9999.99'. What SAS format will fit this besides character. This field will be summarized in a total with supporting record lines. Really stuck on what format to use.

3 REPLIES 3
Reeza
Super User

DOLLAR

https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.4&docsetId=leforinforref&docsetTarge...


@larrytex wrote:

I have a field with the input layout of '$9999.99'. What SAS format will fit this besides character. This field will be summarized in a total with supporting record lines. Really stuck on what format to use.


 

Astounding
PROC Star

To read such a field, you need to apply an informat, such as:

 

input varname dollar8.;

 

That will give you a numeric variable that you can summarize.  If you want to print out the result using dollar signs and commas, apply a format for printing:

 

format summarized_varname dollar9.;

larrytex
Calcite | Level 5
Sorry. Needed char format. Used source to text formatting to make it work


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