BookmarkSubscribeRSS Feed
ChrisWoo
Obsidian | Level 7

Hi guys, just wanna know what's wrong with my code.

I expect the outcome is written into log like following:

 

text = 31/07/2023
text = 31/08/2023
text = 30/09/2023
text = 31/10/2023
text = 30/11/2023
text = 31/12/2023
text = 31/01/2024
text = 29/02/2024

/* My code */

data _null_; do 1 = 0 to 7; put "text = " put(intnx("month","01Jul2023"d,i,"end"),ddmmyy10.); end; run;
1 REPLY 1
FreelanceReinh
Jade | Level 19

Hi @ChrisWoo,

 

Basically, the PUT statement works only with variables and string constants. Results of a function must be stored in a variable first.

data _null_;
do i = 0 to 7;
  text=put(intnx("month","01Jul2023"d,i,"end"),ddmmyy10.);
  put "text = " text;
end;
run;

With named output the PUT statement can be simplified to

put text=;

This doesn't put blanks around the equals signs, though.

 

Another option is formatted output:

data _null_;
do i = 0 to 7;
  d=intnx("month","01Jul2023"d,i,"end");
  put "text = " d ddmmyy10.;
end;
run;

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
  • 1 reply
  • 203 views
  • 2 likes
  • 2 in conversation