SAS Programming

DATA Step, Macro, Functions and more
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.   

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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