Hello,
I've been doing a lot of searching for this problem and can't seem to figure it out. I don't think the problem is my code because my code works properly in SAS Studio, but I have a huge dataset so I prefer to use SAS locally on my desktop.
Very simple code can give you an idea of the problem:
data test2;
set test;
year=year(date);
run;
The above runs perfectly fine in SAS Studio, but in my local version of SAS, "year( )" isn't recognized as a function and doesn't change color.
Is there a quick fix to this and a novice like me has just overlooked the issue?
Thanks!