BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi,

I was trying to add a new variable to my dataset and wanted it to be formatted using the format i define. But I always get this error "The format $ was not found or could not be loaded."

Can someone help me please.

Here's a sample of my code:

proc format library=fmt.coll;
value $brcode '036' = 'Manila'
...
OTHER = 'Other'
;

value buc 0 = 'buc0'
...
120 - High = 'buc12'
;
run;


Here' s how I use my format.

data mydata.new;
set temp;
format brname $brcode.;
bkt = put(numdays,buc.);
run;


I only encounter the error with this line "format brname $brcode.;"
Is there any other way to do it?

I also tried brcode = put(brname,$brcode.); but still the same problem
"The format $brcode was not found or could not be loaded."

Thank you guys, hoping for your help and suggestions.
1 REPLY 1
deleted_user
Not applicable
hi guys,

i found the answer to my problem

options fmtsearch=(formats.collection);

thanks

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!
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1161 views
  • 0 likes
  • 1 in conversation