Howdy, I'm trying to use a variable in the AS part of my SQL Statement but not having any luck. Here is an example: PROC SQL; CREATE TABLE newtbl AS SELECT 1 AS 'Year Is (&REPORT_YEAR.)'N FROM SomeTable ;QUIT; Does anyone know how to get the variable to render its value in the column name?
... View more