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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 2236 views
  • 1 like
  • 3 in conversation