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

I would like to obtain the actual element name in a data step array as opposed to the value of that column. Is there any way to obtain the value? Example below;

data _null_;

     array test {1} helloworld;

    

     do j=1 to 1;

          call symput('name', test{1} );

     end;

run;

%put &name; /*I would like the name value to be helloworld */

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

VNAME function

data _null_;

     array test {1} helloworld;

   

     do j=1 to 1;

          call symput('name', vname(test{1}) );

     end;

run;

%put &name; /*I would like the name value to be helloworld */

View solution in original post

3 REPLIES 3
Reeza
Super User

VNAME function

data _null_;

     array test {1} helloworld;

   

     do j=1 to 1;

          call symput('name', vname(test{1}) );

     end;

run;

%put &name; /*I would like the name value to be helloworld */

art297
Opal | Level 21

data _null_;

     array test{1} $20. ("helloworld");

   

     do j=1 to 1;

          call symput('name', test{1} );

     end;

run;

%put &name; /*I would like the name value to be helloworld */

bream_bn
Fluorite | Level 6

Wow you guys are quick!!!
Reeza works exactly as expected even with multiple array values.
Arthur yours works as well it just was not as straight forward how to add multiple array values;

data _null_;

     array test {2} hello world;

  

     do j=1 to 2;

          call symput('name', vname(test{j}) );

     end;

run;

%put &name; /*Puts world */

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1697 views
  • 3 likes
  • 3 in conversation