☑ This topic is solved.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 05-15-2023 11:33 AM
(1306 views)
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;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Tell PROC SQL to use a different FORMAT when it generates the text that it stores into the macro variable. You also probably do not want to store leading spaces into the macro variable.
Plus there is no need to also send the result to the printer.
proc sql noprint;
select sum(points) format=best32.
into :dsumpoints trimmed
from in1ernex
;
quit;
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Tell PROC SQL to use a different FORMAT when it generates the text that it stores into the macro variable. You also probably do not want to store leading spaces into the macro variable.
Plus there is no need to also send the result to the printer.
proc sql noprint;
select sum(points) format=best32.
into :dsumpoints trimmed
from in1ernex
;
quit;