BookmarkSubscribeRSS Feed
jaiganesh
Obsidian | Level 7

Hello,

 

 

I went through the %include concept.

 

Can anybody please give small executable code of %include with external File.

 

Regards,

Jai

2 REPLIES 2
Astounding
PROC Star

You have to decide on the name of a file to hold some code.  Once you have done that, try this code:

 

filename somefile 'path to the file you have selected';

data _null_;
file somefile;
put 'data comes in all shapes and sizes; name="Fred"; run;' ;
run;

%include somefile;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 524 views
  • 0 likes
  • 3 in conversation