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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2727 views
  • 0 likes
  • 5 in conversation