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).
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.