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!
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!