BookmarkSubscribeRSS Feed
Sanyam
Calcite | Level 5

I want to read a large floating point number from fixed position file and write it as the same value without rounding it.

Example:

Number starts from position 20 in the file. And the value is 999999999999.999999

I tried reading this value as

INPUT @20 num 19.6;


But the output it shows with or without the format 19.6 as :


1E12

1 REPLY 1
SASKiwi
PROC Star

SAS stores numbers in 8 bytes which can accurately hold around 16 digits including decimal places. Since SAS cannot precisely hold the 19 digits you are after you end up getting numbers slightly different to what you read. Try format 16.2.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 968 views
  • 0 likes
  • 2 in conversation