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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.