1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;42 ;4344 %macro countries(country);45 title "Customers in &country";4647 %let country =%sysfunc(compress(&country));48 proc print data=orion3.customer_dim noobs label;49 where customer_country = "&&&country";50 var customer_id customer_name customer_age_group;51 customer_group;52 run;53 %mend countries;54 %countries(Canada)NOTE: Line generated by the invoked macro "COUNTRIES".54 proc print data=orion3.customer_dim noobs label; where customer_country = "&&&country"; var customer_id customer_name54 ! customer_age_group; customer_group; run;______________180WARNING: Apparent symbolic reference CANADA not resolved.ERROR 180-322: Statement is not valid or it is used out of proper order.NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE PRINT used (Total process time):real time 0.01 secondscpu time 0.03 seconds55 ;56 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;66 ;