Maybe what you really want is as simple as this: proc freq data=have; tables field_name; run; If not, it might be this: proc freq data=have; tables form_name * field_name / missing list; run; It won't point out which rows you need to fix, but it will find the spelling variations.
... View more