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

I have this import statement:

PROC IMPORT DATAFILE = 'C:\ Data Files\AAAAAA\DN txns BBBBBB Test.xlsx'

                DBMS=XLSX

                OUT = WORK.AP_XXXXXXXX;

                SHEET = 'Sheet1';

I have some 50 of such import statements in my code. 

In the above statement AAAAAA, BBBBBB, XXXXXXXX comes from one SAS table with three columns which contains these values.  

Is it possible to read these fields from SAS table and pass the value to the above statement and make it execute 50 times? 

Thanks.

PR

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Yes.

CALL EXECUTE() is one way.

You can also generate the code to a file as text output using the PUT statement and then %INCLUDE the generated code.

Let's assume you have table named HAVE with variables A, B and X containing the strings above.

data have ;

  input (A B X) ($);

cards;

AAAAA BBBBB XXXXX

;;;;

data _null_;

  set have ;

  cmd =

   catx(';'

       ,catx(' ','PROC IMPORT DATAFILE ='

                ,quote(cats('C:\Data Files\'

                           ,A

                           ,catx(' ','\DN txns',B,'Test.xlsx')

                           ))

                ,'DBMS=XLSX'

                ,cats('OUT = WORK.AP_',x)

            )

       ,"SHEET = 'Sheet1'"

       ,'run;'

       )

  ;

  putlog cmd= ;

  call execute(cats(cmd));

run;

View solution in original post

4 REPLIES 4
LinusH
Tourmaline | Level 20

CALL EXECUTE();

Data never sleeps
Tom
Super User Tom
Super User

Yes.

CALL EXECUTE() is one way.

You can also generate the code to a file as text output using the PUT statement and then %INCLUDE the generated code.

Let's assume you have table named HAVE with variables A, B and X containing the strings above.

data have ;

  input (A B X) ($);

cards;

AAAAA BBBBB XXXXX

;;;;

data _null_;

  set have ;

  cmd =

   catx(';'

       ,catx(' ','PROC IMPORT DATAFILE ='

                ,quote(cats('C:\Data Files\'

                           ,A

                           ,catx(' ','\DN txns',B,'Test.xlsx')

                           ))

                ,'DBMS=XLSX'

                ,cats('OUT = WORK.AP_',x)

            )

       ,"SHEET = 'Sheet1'"

       ,'run;'

       )

  ;

  putlog cmd= ;

  call execute(cats(cmd));

run;

Tom
Super User Tom
Super User

Writing to a file can make the syntax simpler.  Especially if you make variable names that match the option names so that you can use the = operator in the PUT statement.

It also has the advantage that you can create the file and look at it to verify the syntax before executing it.

filename code temp;

data _null_;

  set have ;

  datafile = cats('C:\Data Files\',A,catx(' ','\DN txns',B,'Test.xlsx'));

  out = cats('WORK.AP_',x);

  file code ;

  put 'PROC IMPORT '  DATAFILE = :$quote.

      'DBMS=XLSX ' OUT= ';'

    / "SHEET = 'Sheet1';"

    / 'run;'

  ;

run;

%inc code / source2 ;


pr1
Calcite | Level 5 pr1
Calcite | Level 5

This works!!  THANKS!!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3854 views
  • 0 likes
  • 3 in conversation