s******r 发帖数: 1524 | 1 My coworker created a dataset with varaibles name as
00-70%.
Anyone has idea how to read it by data step and proc sql?
Thanks, | s*******f 发帖数: 148 | 2 Express the varname as:
'00-70%'n
Usually you need to specify the following option first:
OPTION VALIDVARNAME = ANY;
For more info, you may refer to "SAS Name Literals" in this webpage:
http://www.colostate.edu/Services/ACNS/swmanuals/sasdoc/sashtml/lrcon/z0998953.htm
【在 s******r 的大作中提到】 : My coworker created a dataset with varaibles name as : 00-70%. : Anyone has idea how to read it by data step and proc sql? : Thanks,
| s******r 发帖数: 1524 | 3 Thank a lot. It really help.
【在 s*******f 的大作中提到】 : Express the varname as: : '00-70%'n : Usually you need to specify the following option first: : OPTION VALIDVARNAME = ANY; : For more info, you may refer to "SAS Name Literals" in this webpage: : http://www.colostate.edu/Services/ACNS/swmanuals/sasdoc/sashtml/lrcon/z0998953.htm
|
|