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;

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 save with the early bird rate—just $795!

Register 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
  • 846 views
  • 1 like
  • 2 in conversation