BookmarkSubscribeRSS Feed
NJGIRL
Obsidian | Level 7

Hi all,

Not a newbie, just can't find my code that converts a sas dataset into a format via Proc Format.

 

Anyone have the straightforward code readily available?

Thanks so much!

 

3 REPLIES 3
Reeza
Super User
https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.5&docsetId=proc&docsetTarget=n1e19y6...

You need to create your start, end, label, fmtname and type variables correctly as per the documentation and then use PROC FORMAT with CNTLIN.
The example in the documentation seems well explained, is there some portion that needs more detail?
Kurt_Bremser
Super User
data fmt_cntlin;
set have (
  keep=<source> <target>
  rename=(<source>=start <target>=label)
) end=done;
fmtname = "myfmt";
type = "C"; /* N for numeric */
output;
if done
then do;
  hlo = "O";
  /* add code for "other" values */
  output;
end;
run;

proc format cntlin=fmt_cntlin;
run;
DrAbhijeetSafai
Lapis Lazuli | Level 10

Thanks a lot! It was very useful. Thanks once again!

 

Thanking you,

Yours sincerely,

 

- Dr. Abhijeet Safai

Dr. Abhijeet Safai
Certified Base and Clinical SAS Programmer
Associate Data Analyst
Actu-Real

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 3 replies
  • 870 views
  • 1 like
  • 4 in conversation