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

Greeting!

 

I want concatenate a SAS date variable trtsdt (eg., "2018-04-27") with text string doseduration "10 minutes" into a new text variable "27-Apr-2018 10 minutes", but when I use

TD = catx(' ', trtsdt, doseduration);

what I got is "21301 10 minutes"

 

How can I got the date portion appear as date like "27-Apr-2018 10 minutes"

 

Thank you so much!

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Please try-

TD = catx(' ', put(trtsdt,date11.), doseduration);

View solution in original post

4 REPLIES 4
novinosrin
Tourmaline | Level 20

Please try-

TD = catx(' ', put(trtsdt,date11.), doseduration);
zimcom
Pyrite | Level 9
Thank you so much, and have a great weekend!!
ballardw
Super User

Try:

 

D = catx(' ', put(trtsdt, date11.), doseduration);

 

you need to explicitly apply a format with Put to create a text value. Otherwise the CATX and similar functions will use a Best. format yielding integers for dates.

zimcom
Pyrite | Level 9
Thank you for the explaination!

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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