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

Hello:

 

I would like to have create a system today format with YYYY_MM_DD.   Something wrong with my code below, could someone help me to fix it?  Thanks.

 

data Today;

input Today : $50.;

call symput('tdate',put(year("&sysdate"d),4.)||'_'||put(month("&sysdate"d),z2.)||'_'||put(day("&sysdate"d),z2.));

run;

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Are you after this?

 


data _null_;

/*input Today : $50.;*/

call symput('tdate',put(year("&sysdate"d),4.)||'_'||put(month("&sysdate"d),z2.)||'_'||put(day("&sysdate"d),z2.));

run;

%put &tdate;

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20

Are you after this?

 


data _null_;

/*input Today : $50.;*/

call symput('tdate',put(year("&sysdate"d),4.)||'_'||put(month("&sysdate"d),z2.)||'_'||put(day("&sysdate"d),z2.));

run;

%put &tdate;
ballardw
Super User

@ybz12003 wrote:

Hello:

 

I would like to have create a system today format with YYYY_MM_DD.   Something wrong with my code below, could someone help me to fix it?  Thanks.

 

data Today;

input Today : $50.;

call symput('tdate',put(year("&sysdate"d),4.)||'_'||put(month("&sysdate"d),z2.)||'_'||put(day("&sysdate"d),z2.));

run;


What is "wrong"?

Your code shows an input statement with no source to read.

Which is why you get the error:

ERROR: No DATALINES or INFILE statement.

Did you read the log? That is a fairly clear error message.

 

ybz12003
Rhodochrosite | Level 12

I did see the error message, that's why I post Q.   

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