BookmarkSubscribeRSS Feed
ari
Quartz | Level 8 ari
Quartz | Level 8

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

5 REPLIES 5
RahulG
Barite | Level 11

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

ari
Quartz | Level 8 ari
Quartz | Level 8
but the values are imported as

1000
1000
1000
1000
1000

from the text file
Ksharp
Super User

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;

ari
Quartz | Level 8 ari
Quartz | Level 8
This works. Thanks Xia
PGStats
Opal | Level 21

Please tell us how you imported the data into a SAS dataset.

PG

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1115 views
  • 0 likes
  • 4 in conversation