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


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