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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 675 views
  • 0 likes
  • 3 in conversation