Skip to content

Commit

Permalink
Fix issue 35
Browse files Browse the repository at this point in the history
  • Loading branch information
eaolson committed Jun 17, 2018
1 parent ae0bbbf commit 8b7488f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ora/xlsx_builder_pkg.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -1624,9 +1624,9 @@ ts timestamp := systimestamp;
loop
t_xxx := t_xxx || '<autoFilter ref="' ||
alfan_col( nvl( workbook.sheets( s ).autofilters( a ).column_start, t_col_min ) ) ||
nvl( workbook.sheets( s ).autofilters( a ).row_start, workbook.sheets( s ).rows.first() ) || ':' ||
to_char( nvl( workbook.sheets( s ).autofilters( a ).row_start, workbook.sheets( s ).rows.first() )) || ':' ||
alfan_col( coalesce( workbook.sheets( s ).autofilters( a ).column_end, workbook.sheets( s ).autofilters( a ).column_start, t_col_max ) ) ||
nvl( workbook.sheets( s ).autofilters( a ).row_end, workbook.sheets( s ).rows.last() ) || '"/>';
to_char( nvl( workbook.sheets( s ).autofilters( a ).row_end, workbook.sheets( s ).rows.last() )) || '"/>';
end loop;
if workbook.sheets( s ).mergecells.count() > 0
then
Expand Down

0 comments on commit 8b7488f

Please sign in to comment.