BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
bijayadhikar
Quartz | Level 8

Hi, is there a way to insert date after "Date Extraction:" below,

 

proc odstext;
 p 'Source:'/ style=[color=blue fontsize=12pt fontfamily='Courier New' fontweight=bold];
  list;
item 'Master Database, Date Extraction: ' / style=[fontsize=11pt fontfamily='Courier New']; 
end;                     
run;
1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Use a macro variable, and double quotes:

%let date = %sysfunc(today(),yymmdd10.);

proc odstext;
 p "Source:"/ style=[color=blue fontsize=12pt fontfamily='Courier New' fontweight=bold];
  list;
item "Master Database, Date Extraction: &date." / style=[fontsize=11pt fontfamily='Courier New']; 
end;                     
run;

Hint: use single quotes in SAS only where explicitly needed, or if you need to prevent the resolution of macro triggers.

View solution in original post

4 REPLIES 4
yabwon
Amethyst | Level 16

a macro variable for start?

%let date=%sysfunc(int('14mar2024'd),yymmdd10.);

proc odstext;
 p 'Source:'/ style=[color=blue fontsize=12pt fontfamily='Courier New' fontweight=bold];
  list;
item "Master Database, Date Extraction: &date." / style=[fontsize=11pt fontfamily='Courier New']; 
end;                     
run;

 

Bart

_______________
Polish SAS Users Group: www.polsug.com and communities.sas.com/polsug

"SAS Packages: the way to share" at SGF2020 Proceedings (the latest version), GitHub Repository, and YouTube Video.
Hands-on-Workshop: "Share your code with SAS Packages"
"My First SAS Package: A How-To" at SGF2021 Proceedings

SAS Ballot Ideas: one: SPF in SAS, two, and three
SAS Documentation



bijayadhikar
Quartz | Level 8
Thank you to @yabwon for quick response and solution. Appreciated.
Kurt_Bremser
Super User

Use a macro variable, and double quotes:

%let date = %sysfunc(today(),yymmdd10.);

proc odstext;
 p "Source:"/ style=[color=blue fontsize=12pt fontfamily='Courier New' fontweight=bold];
  list;
item "Master Database, Date Extraction: &date." / style=[fontsize=11pt fontfamily='Courier New']; 
end;                     
run;

Hint: use single quotes in SAS only where explicitly needed, or if you need to prevent the resolution of macro triggers.

bijayadhikar
Quartz | Level 8
Thank you to @Kurt for quick response and solution. Appreciated.

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

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4 replies
  • 1342 views
  • 0 likes
  • 3 in conversation