I'm working with data from a survey that allowed study participants to type in numeric responses, rather than providing them with a drop-down menu for them to select a numeric responses. As a result, I have responses that include characters (e.g. "9-12" or "7?"). I would like to identify the observations that have characters in them.
Thanks in advance!
The code I have in mind is getting me stuck on the WHERE statement.
PROC PRINT DATA=library.survey; VAR record_id; WHERE var1 ...... RUN;
Is there something I can write that's essentially telling SAS to print the record IDs where var1 doesn't equal a numeric value?