I am getting an error message in the proc format with some symbols -
"This range is repeated, or values overlap: "
I was presttey sure that there are no repeats of variables with "by" statement, How to overcome this issue.
thanks in advance,
sasbase9
Hi,
Post some sample data and code that you are using.
Thanks,
Shiva
Can you post some data as to how your proc format is defined?
Try use opition "multilabel" in the Value statement.
for example
proc format;
value $gender (multilabel)
'1'='Male'
'2'='Female'
'1','2',' '='Total people';
If SAS is telling you that there is an overlap, then there really is an overlap. Plain and simple. You just haven't found it yet. Here are some cases to look for.
Ranges can overlap:
1-10='Low' 8-15='Medium';
Values can be repeated:
'M' = 'Male'
'M' = 'Male'
You'll find at least one of these somewhere, even if it's part of a range that uses LOW or HIGH.
Good luck.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
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.