I'm getting this error can yoy please resolve it 9 libname A "C:\Users\Dass6\Desktop\A" ; 10 %macro simplefunationality (dsn=); 11 proc print data=&dsn ; 12 run; 13 %mend; 14 options symbolgen mprint; 15 %simplefuntionality (dsn=A.Ae) - 180 WARNING: Apparent invocation of macro SIMPLEFUNTIONALITY not resolved. ERROR 180-322: Statement is not valid or it is used out of proper order.
your defined macro name is simplefunationality but your executing %simplefuntionality(this macro is not defined any where). Please check macro names they are not same and hence the error.
Thank you so much for excellent presentation with simple examples.
Very Nice and short video related to macros Thanks a lot Kiran
thanku sir
Can you please tell how to take only last record in a dataset using obs
use end=last in dataset option then do if last
I'm getting this error can yoy please resolve it
9 libname A "C:\Users\Dass6\Desktop\A" ;
10 %macro simplefunationality (dsn=);
11 proc print data=&dsn ;
12 run;
13 %mend;
14 options symbolgen mprint;
15 %simplefuntionality (dsn=A.Ae)
-
180
WARNING: Apparent invocation of macro SIMPLEFUNTIONALITY not resolved.
ERROR 180-322: Statement is not valid or it is used out of proper order.
your defined macro name is simplefunationality but your executing %simplefuntionality(this macro is not defined any where). Please check macro names they are not same and hence the error.
@@kiranvenna , Yeah Thanks , now im getting the result.