BookmarkSubscribeRSS Feed
LNM
Fluorite | Level 6 LNM
Fluorite | Level 6

I need help concatenating my two dates to a comment field.  Here's what I have

DATA PRX;

SET BICS_02;

format prx_startdt prx_enddt mmddyy10.;      /*format to mm/dd/yyyy*/

prx_startdt = datepart(Optional_1_start_date);      /*optional date is date and time*/

prx_enddt = datepart(Optional_1_end_date);        /*optional date is date and time*/

period_comments = prx_startdt||" to "||prx_enddt;      /*combine the dates in comment "start date to end date"*/

run;

prx_startdt and prx_enddt just post the date values.  I have converted it to the right format but in the doesn't translate correctly to my comments field.  Please help.

4 REPLIES 4
Astounding
PROC Star

Try it this way:

 

period_comments = put(prx_startdt, mmddyy10.) || " to " || put(prx_enddt, mmddyy10.); 

 

 

ChrisNZ
Tourmaline | Level 20

Since the variable already has a format, this works too:

 

PERIOD_COMMENTS = vvalue(PRX_STARTDT) || ' to ' || vvalue(PRX_ENDDT); 

 

LNM
Fluorite | Level 6 LNM
Fluorite | Level 6

Thanks a lot, it works!!

LNM
Fluorite | Level 6 LNM
Fluorite | Level 6

Thank you, it works!

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
  • 4 replies
  • 4803 views
  • 0 likes
  • 3 in conversation