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

i have a variable duration(numeric) and unit(character).

 

i need to concatenate both and make them into character.

 

ADURN=cats(adurn,aduru);

 

but this fails as NOTE: Invalid numeric data.

 

is there any way to do in cat functions?

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

This happens because you are trying to change the variable ADURN's type from numeric to character.

 

You can not (and shouldn't try to) change the type of a variable once it has been defined.

 

Therefore, call ADURN something else at the left side of the equal sign

View solution in original post

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20

like this?

 

data test;
	duration = 100;
	unit = 'years';
	adurn = cats(duration,unit);
run;
vraj1
Quartz | Level 8

i used a same step but somehow i get the error

data inc;
set adae;
ADURN=cats(adurn,aduru);
run;

 

ADURN is numeric and lenght as 8 and format as best12.

ADURU is char and length 40 

 

NOTE: Character values have been converted to numeric values at the places given by: (Line):(Column).
959:9
NOTE: Invalid numeric data, '18Days' , at line 959 column 9.

PeterClemmensen
Tourmaline | Level 20

This happens because you are trying to change the variable ADURN's type from numeric to character.

 

You can not (and shouldn't try to) change the type of a variable once it has been defined.

 

Therefore, call ADURN something else at the left side of the equal sign

RW9
Diamond | Level 26 RW9
Diamond | Level 26

I agree with @PeterClemmensen.  One thing I would add is that it is generally advisable to put() numerics to text and cat the result, as then it is both in your hands what to do with the number, and clear to other users what is happening:

cats(put(number_var,3.),text_var);

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
  • 4 replies
  • 35902 views
  • 1 like
  • 3 in conversation