BookmarkSubscribeRSS Feed
omega1983
Calcite | Level 5

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

1 REPLY 1
Reeza
Super User

ods tagset

should be odd tagset.excelxp perhaps?


Usually means there's an error in the code somewhere but hard to see without all the code.


If you're splitting the data by a variable, in a proc report you can do it in one step using the sheet_interval option and adding in a variable that has the name.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 812 views
  • 0 likes
  • 2 in conversation