BookmarkSubscribeRSS Feed
a13
Calcite | Level 5 a13
Calcite | Level 5

Code


data total_sales;
input Date mmddyy10. +2 Amount comma5.;
datalines;
09/05/2000 1,382
10/19/2000 1,235
11/30/2000 2,391
;
run;

 

Output

 

 

114858382 
214902235 
314944391

 

 

3 REPLIES 3
muratatik
Obsidian | Level 7
DATA TOTAL_SALES;
FORMAT DATE MMDDYY10.;
INPUT DATE :MMDDYY10. AMOUNT :COMMA5.3;
DATALINES;
09/05/2000 1,382
10/19/2000 1,235
11/30/2000 2,391
;
RUN;
RW9
Diamond | Level 26 RW9
Diamond | Level 26

SAS stores dates as number of days since a certain timepoint.  The number you are seeing is the raw value, i.e. the number of days since the cuttoff.  You need to format this number of days into the display type you want.

Astounding
PROC Star

The smallest change possible:  change +2 to +1.  +2 moves you past the first digit, to the comma.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 973 views
  • 0 likes
  • 4 in conversation