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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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