Long time SAS user here. I've been working in SAS Studio that last three years. One thing I can't figure out: TITLE statement no longer seems to function as a global statement in this environment. Can anyone confirm that? I tried searching but couldn't find anything on SAS support to find the answer. Example 1: I can run this and get two titles in my output title1 "This is TITLE 1"; title2 "This is TITLE 2"; proc freq data=analy; tables var1 var2; run; Example 2: If I run it like this, I get Title1 for my first proc freq and Title2 ONLY for my second proc freq. I would expect to see Title1 and Title2 for the second proc freq. This is how it would work in SAS EG or PC-SAS. title1 "This is TITLE 1"; proc freq data=analy; tables var1 var2; run; title2 "This is TITLE 2"; proc freq data=analy; tables var3 var4; run;
... View more