Hi, I ran the following code and the symbol "-" is not recognized. I cannot change it since I am importing more than 100 csv files with the symbol "-" in most of the file names. Is there a way for SAS to recognize the symbol? data TEST.ABC-POST;
%let _EFIERR_ = 0; /* set the ERROR detection macro variable */
infile "&DATA_PATH.CSV files/ABC-POST.csv" delimiter=','
...
run; This is the log: 207
208
209 *ABC-POST variables;
210 data TEST.ABC-POST;
_
22
200
ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, (, /, ;, _DATA_, _LAST_, _NULL_.
ERROR 200-322: The symbol is not recognized and will be ignored.
... View more