We have a job that reads in an MS Access table with a variable named 1Quarter.
Not having any luck renaming the variable to a SAS compliant name.
Any ideas?
Our last option would be to go back into MS Access and rename it before the import, just want to check to see if there is another way to rename.
TIA J
I would think that SAS would convert the name to be _1Quarter. You could change it to be either Quarter1 or Quarter_1.
I sort of brute forced this one for now, exported into excel then created a new dataset in sas with correct names and imported...
Not a 100% solution but ok for now...
Thanks, Jay
You need:
options validvarname=any;
Ksharp
I had similar problems a few years ago when I was having SAS "talk to" Access a lot. In addition to options validvarname=any that Ksharp mentioned, you will probably need to use name literals (I think that's what their official name is), e.g. "1Quarter"n (note the n following the quote to indicate it is a name, not a string).
Try something like
options validvarname=any;
data new;
set old;
rename "1Quarter"n = Quarter1;
run;
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.