BookmarkSubscribeRSS Feed
BrahmanandaRao
Lapis Lazuli | Level 10

Hi Guys

We are using  proc import procedure to import csv excel txt files  into SAS 

so how to import JSON files into SAS  and how export JSON files 

2 REPLIES 2
andreas_lds
Jade | Level 19

Depends on the sas version you have.

Check if you can use something like libname jlib json .... See docs for details.

Ksharp
Super User
Import json file by json engine:

filename x 'c:\temp\x.json';
libname j json fileref=x;
proc copy in=j out=work;
run;

Export json ,check PROC JSON .

SAS Innovate 2025: Register Now

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 2343 views
  • 1 like
  • 3 in conversation