This is what the documentation says about the point option:
"The POINT= variable is available anywhere in the DATA step, but it is not added to any new SAS data set"
But nothing is stopping you from assigning another variable the same value, which will then end up in your output table:
data work.revenue (drop = i samplesize);
samplesize = 10;
do i = 1 to samplesize;
pickit = ceil(ranuni(0) * totobs);
pick = pickit;
set sashelp.class point = pickit nobs = totobs;
output;
end;
stop;
run;
Regards,
Linus
Data never sleeps