Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ExcelXP tagset: Titles and Footnotes

Status
Not open for further replies.

cbdolan

Programmer
Jan 7, 2011
1
US
The code to include embedded titles and footnotes is simple.

ods &_ODSDEST path='G:\Carrie\Fact Book\Fact book_temp\' file='carrie_test.xls' style=&_ODSSTYLE
options(default_column_width='15'
index='yes'
sheet_name='Table 1:Enrollment IS_OSS'
embedded_titles='yes'
embedded_footnotes='yes'
absolute_column_width='12,15,8,8,8,8,8'
center_horizontal='yes');

title "test";
footnote "test";

When I submit this code the title takes up 2 rows and the footnote extends to 3 rows with inconsistent shading on both.

I'm trying to figure out how to left justify the footnote with no shading and on only one row and how to have a title that is only on one row with no shading.

Any suggestions are greatly appreciated!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top