Hi,
I'm using proc sql to create a table where I want the label of column "ART_PRO" to be the current week number and changes every week when pull the report.
I'm using the following:
PROC SQL;
CREATE TABLE test_table AS
SELECT ART_PRO
FROM WORK.COM_VTA_SEM_ANT
RUN;
Is it possible?
Thanks
Yes. Something like:
PROC SQL;
CREATE TABLE test_table AS
SELECT ART_PRO label="%sysfunc(week(%sysfunc(today())))"
FROM WORK.COM_VTA_SEM_ANT
RUN;
Yes. Something like:
PROC SQL;
CREATE TABLE test_table AS
SELECT ART_PRO label="%sysfunc(week(%sysfunc(today())))"
FROM WORK.COM_VTA_SEM_ANT
RUN;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.