Include it in your code before the macro code and macro call.
Gotcha.
I have included that before the code and got a log of SASWORKLOCATION but nothing else.
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.