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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1290 views
  • 0 likes
  • 3 in conversation