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.

Catch up on SAS Innovate 2026

Dive into keynotes, announcements and breakthroughs on demand.

Explore 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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 17 replies
  • 4772 views
  • 0 likes
  • 5 in conversation