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;

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

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;

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register 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
  • 1096 views
  • 1 like
  • 2 in conversation