BookmarkSubscribeRSS Feed
Reeza
Super User

Include it in your code before the macro code and macro call. 

mmaleta851
Fluorite | Level 6

Gotcha.

 

I have included that before the code and got a log of SASWORKLOCATION but nothing else.

Reeza
Super User

Did you call the macro as well? There's nothing in the code shown that actually calls the macro so you may need to add that in as well if it's somewhere else in the process.

 

%let path=C:\\;

options mprint symbolgen mlogic;

%macro import_date;
%if %sysfunc(fileexist(&path\Historical %sysfunc(intnx(day, %sysfunc(today()), -1, s), monyy7.)  .csv))
%then %do;
data work.import;
	infile "&path\Historical %sysfunc(intnx(day, %sysfunc(today()), -1, s), monyy7.)  .csv" dsd firstobs=2;
	informat PlayerId 8. FirstName LastName 'Market (Marketing)'n $40.  Date Date9. Sales;
	format PlayerId 8. FirstName LastName 'Market (Marketing)'n Date Date9. Sales;
	input PlayerId FirstName $ LastName $ 'Market (Marketing)'n  $ Date Sales;
run;
%end;
%else %do;
data work.import;
run;
%end;
%mend;

%import_date;

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