Hello, I am new to SAS and trying to pick up the basics of the language. I was trying to do some basic import and proc functions and I am getting the error: ERROR: Unable to restore 'Base.Contents.Attributes' from template store. I am starting to assume that I did something wrong when it came to installing the software. Here is my code listed below. Libname mylib "C:\Users\jnemr\Downloads"; data survey; infile "C:\Users\jnemr\Downloads\Survey.txt"; input Initials $ Gender $ State $ Years Profession $; Run; proc contents data=Survey; run; Thanks!
... View more