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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1489 views
  • 0 likes
  • 1 in conversation