data one two three;
set main;
if a=2 output one;
if a=3 output two;
if a=4 output three;
run;
/*creates three data sets*/
%macro all_tabs(ds,name);
ods tagset (sheet interval='none' sheet_name = &name.....etc);
proc report data = &ds. NOWD; headskip split = '*' wrap nowd
col etc..........; /*the column fields go here*/
run;
%mend;
%all_tabs(one,"0-30");
%all_tabs(one,"31-60");
%all_tabs(one,"61-90");
%insertCode(report_name.sas);
ods tagset.excelXP close;
ods listing;
quit;
When I run the report to populated the 3 different tabs I get the error message LINE AND COLUMN CANNOT BE DETERMINED
Why am I getting this error and will I have to rename the &name portion since it is in quotes