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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—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
  • 3049 views
  • 1 like
  • 3 in conversation