BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
West26
Obsidian | Level 7

Guys,

I am trying to create an excel report, by using ods tagsets.excelxp.

 

Title1:I got thisTitle2: Ineed thisTitle2: I need this
   
MonthPrevious MonthFuture Month
   
MarFebApr
AprMarMay

 

ods tagsets.excelxp file="...\abc.xml" options(embed_titles='yes');
title "I got this";
proc print...;
run;
ods tagsets.excelxp close;

 

What changes, do I need to do for the code, if I want Title2 and Title3, respective to Previous Month and Future Month Columns?

 

Thank YOU

1 ACCEPTED SOLUTION

Accepted Solutions
ArtC
Rhodochrosite | Level 12

One easy way to control your text is to use PROC REPORT.

title;
proc report data=sashelp.class;
column ('i got this' name) ('second' age) ('third' sex);
define name /display 'insteadofname';
define age / display 'insteadofage';
define sex / display 'insteadofsex';
run;

This avoids any tagset issues.

View solution in original post

3 REPLIES 3
ArtC
Rhodochrosite | Level 12

One easy way to control your text is to use PROC REPORT.

title;
proc report data=sashelp.class;
column ('i got this' name) ('second' age) ('third' sex);
define name /display 'insteadofname';
define age / display 'insteadofage';
define sex / display 'insteadofsex';
run;

This avoids any tagset issues.

West26
Obsidian | Level 7

hi ArtC

Thanks for your time. But I need titles above the columns. I'm able to generate the first Title. So, for the column2, 'Previous Month',  I need the title as "I need this". Is there a way to do so?

 

Title1:I got thisTitle2: Ineed thisTitle2: I need this
   
MonthPrevious MonthFuture Month
   
MarFebApr
AprMarMay
ArtC
Rhodochrosite | Level 12
Did you execute the REPORT step? In what way does the PROC REPORT not place the text as you requested? Must the text come from a TITLE statement?
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
  • 3 replies
  • 1602 views
  • 1 like
  • 2 in conversation