/*This example generates two data sets with one variable and, then, append the second to the first START ADaMSoft, copy the script in the command editor window and press F8*/ dataset out=test1; newvar random_value=num; for (int i=0; i<100; i++) { random_value=RNDUNIFORM(); output; }; run; dataset out=test2; newvar random_value=num; for (int i=0; i<100; i++) { random_value=RNDUNIFORM(); output; }; run; dataset dicta=test1 dictb=test2 out=test; run;