BookmarkSubscribeRSS Feed
Mike7
Calcite | Level 5

Whats the best way to import the data on this website https://download.bls.gov/pub/time.series/la/la.data.3.AllStatesS

to SAS

5 REPLIES 5
art297
Opal | Level 21

The paper that @Reeza suggested is definitely a good start, but you can read that file directly. I'd try the following:

 

filename theurl URL "https://download.bls.gov/pub/time.series/la/la.data.3.AllStatesS";

data want;
    infile theurl truncover firstobs=2 dlm='09'x;
    informat series_id $20.;
    input series_id year period	$ value footnote_codes $;
run;

Art, CEO, AnalystFinder.com

Reeza
Super User

@art297 its pretty much exactly your code 😉

Mike7
Calcite | Level 5

thank you

Reeza
Super User

@Mike7 Please mark the appropriate answer as the correct answer, like Art's solution. NOT this comment please.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1131 views
  • 0 likes
  • 3 in conversation