Hello all:
I am trying to create a format dataset from proc format using cntlout. I use SAS version 8. This is my code:
proc format cntlout=myformat;
value patientgroup_f 0 = 'Case'
1 = 'Control';
run;
However, this is the warning I get
NOTE: The format name 'PATIENTGROUP_F' exceeds 8 characters. Only the first 8 characters will be used.
It appears that the format name is too long so SAS truncate it to 8 characters. Is there any way to disable this behavior so that the full format name will be stored.
Thanks,
Peter
Upgrade to a newer version of SAS. You pay the same whether using an old, outdated, or newer version.
Open Base SAS and go to TOOLS -> OPTIONS -> SYSTEM -> FILES -> SAS FILES.
There is an option called VALIDFMTNAME. Right-click on it and select Modify Value.
I'm not sure what your options will be for SAS v8, but make sure you try defining your format under every option specified.
If it doesn't work, your only solution is to upgrade.
Thank you for pointing that out. I modified my initial post. I initially believed VALIDVARNAME would specify the length of any SAS name, not just for SAS variable names. I see now that there are slight variations of this option: SAS var names (VALIDVARNAME), members (VALIDMEMNAME) and format names (VALIDFMTNAME).
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.