Sorry, can't find any google search results on:
ERROR: Variable ___ introuvable.
??
From your post however, again the question arises, why do you want hundreds of the same data? This doesn't make any sense to me? I mean you can do it, just have something like:
data want;
set sashelp.class (keep=name age);
do rowid=1 to 10;
output;
end;
run;
proc sort data=want;
by rowid name;
run;
proc transpose data=want out=want;
by rowid;
var age;
id name;
run;
But all that is doing is taking some data and multiplying its storage factor up by 10 for no gain?
... View more