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 .

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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