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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.