Have:
| 1.01E+03 |
| 1.01E+03 |
| 1.01E+03 |
| 1.02E+03 |
| 1.02E+03 |
want:
1001
1001
1001
1002
1002
but the values are imported as
1000
1000
1000
1000
1000
Any help to import these values correctly from txt file into SAS?
Thanks
data t;
input k;
datalines;
1.01E+03
1.01E+03
1.01E+03
1.02E+03
1.02E+03
;;
Value would come as
1010
1010
1010
1020
1020
Try Ew.d informat .
data t;
input k e20.;
datalines;
1.01E+03
1.01E+03
1.01E+03
1.02E+03
1.02E+03
;
run;
proc print;run;
Please tell us how you imported the data into a SAS dataset.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.