BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
obertel
Fluorite | Level 6

Hi Gurus

 

I'm working with user-defined format, and need to change a stored user-defined format $nykrpak.

It have been stored for some time ago and I don't have the documentation or sas program that created it in the first place.

Instead of creating a new format, I want to change the existing.

Please recommend how to view and maintain a stored user-defined format.

 

Thanks.

 

Ole

1 ACCEPTED SOLUTION

Accepted Solutions
andreas_lds
Jade | Level 19

Use proc format with cntlout -option to save the format definition to a dataset, than modify the dataset an use proc format with cntlin to update the format definition. Having a backup of the catalog is recommended.

 

proc format cntlout=work.format_def;
   select $nypark;
run;

/* update dataset work.format_def */

proc format cntlin=work.format_def;
run;

View solution in original post

1 REPLY 1
andreas_lds
Jade | Level 19

Use proc format with cntlout -option to save the format definition to a dataset, than modify the dataset an use proc format with cntlin to update the format definition. Having a backup of the catalog is recommended.

 

proc format cntlout=work.format_def;
   select $nypark;
run;

/* update dataset work.format_def */

proc format cntlin=work.format_def;
run;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1 reply
  • 1363 views
  • 3 likes
  • 2 in conversation