|
There is a dataset A as;
id num
1 11
2 22
3 33
Now I want to create a dataset named A which will consists of records
from A appended 100 times.
Sample o/p of Dataset A will be:
1 11
2 22
3 33
1 11
2 22
3 33
..
..
..
..
Is there any other way than using the set statement and writing A 100
times after that
e.g. . data A;
set A A A . .... ..................;
run;
|