Why do we need to use sysfunc when we call a SAS function inside a SAS macro
I saw this piece of code in my project:
%let num = test;
%let x=%sysfunc(trim(num));
Why could not I write:
%let x= %trim(num);
Why did I need to use sysfunc?
Under what circumstances can I call a function inside a macro without using sysfunc?
Topic sas
Category Data Science