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
http://www.sascommunity.org/wiki/Tips:Read_Files_From_Web_Sites_Into_Your_SAS_Program
@Mike7 wrote:
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
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
@art297 its pretty much exactly your code 😉
thank you
@Mike7 Please mark the appropriate answer as the correct answer, like Art's solution. NOT this comment please.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.