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

Hi All,

 

I am using SAS 9.4 (English). I want to concatenate a numeric variable (call it num_var) and a character variable (call it char_var) as follows:

 

wanted = cat(char_var,num_var); run;

I understand that CAT concatenates character variables. Here is my question: Must I convert the numeric variable to a character variable prior to running CAT? Or, does SAS convert the numeric variable to a character variable when I run the code?

 

Thanks for your help.

 

Tristan

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

CAT/CATT/CATX/CATS level of functions does do the automatic conversion, but it uses the BEST format, not the format applied to the data.

 

This type of information will be laid out in the documentation.

 

item

specifies a constant, variable, or expression, either character or numeric. If item is numeric, then its value is converted to a character string by using the BESTw. format. In this case, leading blanks are removed and SAS does not write a note to the log.

 

http://support.sas.com/documentation/cdl/en/lefunctionsref/69762/HTML/default/viewer.htm#p0wism8jqta...

View solution in original post

2 REPLIES 2
Reeza
Super User

CAT/CATT/CATX/CATS level of functions does do the automatic conversion, but it uses the BEST format, not the format applied to the data.

 

This type of information will be laid out in the documentation.

 

item

specifies a constant, variable, or expression, either character or numeric. If item is numeric, then its value is converted to a character string by using the BESTw. format. In this case, leading blanks are removed and SAS does not write a note to the log.

 

http://support.sas.com/documentation/cdl/en/lefunctionsref/69762/HTML/default/viewer.htm#p0wism8jqta...

TristanJ
Fluorite | Level 6
Thank you for the assistance, Reeza.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 2 replies
  • 315 views
  • 0 likes
  • 2 in conversation