Hi, I tried to run the following query and the result keeps displaying as scientific notation. I need the sum to display as an integer. Is there anyway to resolve this issue? proc sql; select sum(points) into :dsumpoints from in1ernex; quit;
... View more