BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I have created a User Defined prompt which i am using in my display of reports.

For example:-

proc format library=FMTLIB;
value com8fmt .=' 0.00' other=[comma8.2];
run;
Now I dont want to use this format.
So how should i delete a user defined prompt permantently?
2 REPLIES 2
MohamedS
Obsidian | Level 7
Hi Sunil,

you just double click on the Formats catalog from inside your library. Select the customized format you want to delete ''com8fmt" then press delete from your keyboard. then it will be deleted premantently.
snakess
SAS Employee
Use the proc catalog

proc catalog cat=FMTLIB.FORMATS;
delete com8fmt.format;
quit;

more info at http://support.sas.com/onlinedoc/913/getDoc/nl/proc.hlp/a002473355.htm

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 685 views
  • 0 likes
  • 3 in conversation