☑ 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 11-16-2022 05:43 AM
(1956 views)
Hello
I am using format 8.4
What is the reason that I see only 3 digits after point and not 4 digits?
For example: 9581.1728 I see as 9581.173
What is the way to see 4 digits?
data have;
format x_numeric 8.4;
input x_numeric;
cards;
9581.1728
9791.5262
1366.1106
;
Run;
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
4 digits left of the dot, the dot, and 3 digits after the dot add up to 8. That's why you need 9.4.
With possible negative values, you would need 10.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
To see a number like 9581.1728 you need 9 spaces, not 8.
--
Paige Miller
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
4 digits left of the dot, the dot, and 3 digits after the dot add up to 8. That's why you need 9.4.
With possible negative values, you would need 10.