BookmarkSubscribeRSS Feed
Kurt_Bremser
Super User

Easy with a character array:

data want;
set have;
array vars {*} _character_;
length var $30; /* make sufficient */
do i = 1 to dim(vars);
  var = vars{i};
  output;
end;
keep var;
run;
rohitkrishna
Calcite | Level 5
Hi KurtBremser
Thanks for the replay
i think it will work thanks very much for the help
thanks & regards
Rohit
Reeza
Super User
Please mark the relevant answer as the solution.

CFC_SAS_Communities_400x225.jpg

Call for content now open!

It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.

Submit your proposal →

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
  • 17 replies
  • 5764 views
  • 0 likes
  • 5 in conversation