I have a one column data which contains information about multiple observations.
Each observation starts with a first column value of "notes".
I.E.
notes
name A1
code B1
...
notes
name A2
code B2
...
...
notes
name A200
code B200
...
Is there a good way to transpose this into 200 rows?
PS. I would like to have name, code, ..., as my column variables after transposing.
Like this?
data HAVE;
input COL1 $16.;
cards;
notes
name A1
code B1
..
notes
name A2
code B2
;
run;
data WANT;
set HAVE;
length NAME CODE $8;
retain NAME;
if COL1=:'name' then NAME=substr(COL1,6);
if COL1=:'code' then do ;
CODE=substr(COL1,6);
output;
call missing(NAME, CODE);
end;
run;
Like this?
data HAVE;
input COL1 $16.;
cards;
notes
name A1
code B1
..
notes
name A2
code B2
;
run;
data WANT;
set HAVE;
length NAME CODE $8;
retain NAME;
if COL1=:'name' then NAME=substr(COL1,6);
if COL1=:'code' then do ;
CODE=substr(COL1,6);
output;
call missing(NAME, CODE);
end;
run;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.
Ready to level-up your skills? Choose your own adventure.