BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
cosmid
Lapis Lazuli | Level 10

Hi,

 

When I store user-defined formats permanently, I define the location of where they are stored. So when I want to view them, I can do something like:

libname myfmtlib 'c:\SAS\mylib';
proc format library=myfmtlib fmtlib;
run;

How do I do this if I want to access the location of where SAS defined dates, comma etc if I don't know the path of where they are stored?

 

I have tried View -> Explorer -> Work, there is no Format catalog. 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
quickbluefish
Barite | Level 11
proc sql;
create table chkfmt as
select * from dictionary.formats;
quit;

proc print data=chkfmt heading=v width=min; run;

View solution in original post

1 REPLY 1
quickbluefish
Barite | Level 11
proc sql;
create table chkfmt as
select * from dictionary.formats;
quit;

proc print data=chkfmt heading=v width=min; run;

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1239 views
  • 1 like
  • 2 in conversation