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

I was wondering if someone could help me with a simple but yet complex task that's driving me nuts.  Thanks.

My data set in excel

dogcatmicecamelpigeoncowgoatfishhorsedonkeymonkeylionrat
970.2525340.572243184345633122315440.69

I want to create two variables 'animals' and 'weight' to match each animal in columns with respective weight without modifying the data. Just by using proc import and or proc sort.

proc import datafile='E:\Copy of final examination.xls' out=Animals dbms=xls replace;sheet=animals;run;

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

The trick is to use function vname to get the variable names and the _NUMERIC_ variable list to populate an array :

data want;

set animals;

array v{*} _NUMERIC_;

do i = 1 to dim(v);

     animal = vname(v{i});

     weight = v{i};

     output;

     end;

keep animal weight;

run;

PG

PG

View solution in original post

2 REPLIES 2
PGStats
Opal | Level 21

The trick is to use function vname to get the variable names and the _NUMERIC_ variable list to populate an array :

data want;

set animals;

array v{*} _NUMERIC_;

do i = 1 to dim(v);

     animal = vname(v{i});

     weight = v{i};

     output;

     end;

keep animal weight;

run;

PG

PG
felipeespi
Calcite | Level 5

Wow thank you for your help that's exactly what I was trying to figure out!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1431 views
  • 0 likes
  • 2 in conversation