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

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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