I would like to know the reason why file sizes continue increasing after I rerun the same command below and get file output, 'SUMMARY1_POST_JOURNAL.xls'. proc export data = WORK.s1
outfile = '/tmp/SUMMARY1_POST_JOURNAL.xls'
dbms = xls replace;
sheet = "sum1";
run; # First run # Second run PS. I uses SAS9.4
... View more