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

Hi,

 

I have a macro and a proc import but im not too sure the macro is working and the file specified can't be found, is there anything wrong with what I have done please?

 

%let Prev_Date_Ran=0719

 

Proc Import
Datafile='V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls'
Out=Work.RAW_All_Users_Previous_Run
DBMS=XLS
replace;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
r_behata
Barite | Level 11

1. Semi Colon is missing at the end of the statement.

%let Prev_Date_Ran=0719;

2. Replace the singe quotes with double quotes so that the macro variable could resolve.

 

Proc Import
Datafile="V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls";
Out=Work.RAW_All_Users_Previous_Run
DBMS=XLS
replace;
run;

View solution in original post

2 REPLIES 2
r_behata
Barite | Level 11

1. Semi Colon is missing at the end of the statement.

%let Prev_Date_Ran=0719;

2. Replace the singe quotes with double quotes so that the macro variable could resolve.

 

Proc Import
Datafile="V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls";
Out=Work.RAW_All_Users_Previous_Run
DBMS=XLS
replace;
run;
ballardw
Super User

 

Proc Import
Datafile="V:\Branch\Office\Set_Up_&Prev_Date_Ran..xls";
Out=Work.RAW_All_Users_Previous_Run
DBMS=XLS
replace;
run;

Also needs one additional period between the macro variable and the file extention. The first period will be used by the macro processor to concatenate following text.

If you run

%put "V:\Branch\Office\Set_Up_&Prev_Date_Ran.xls";

The result in the log is:

"V:\Branch\Office\Set_Up_0719xls"

demonstrating that the period gets "eaten" by the macro processor.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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