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