BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
PJorge
Calcite | Level 5

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

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

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;

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!

View solution in original post

1 REPLY 1
ChrisHemedinger
Community Manager

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;

Become an Explorer! Join SAS Analytics Explorers to learn and complete challenges that earn rewards!

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Creating Custom Steps in SAS Studio

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1672 views
  • 1 like
  • 2 in conversation