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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 989 views
  • 0 likes
  • 2 in conversation