Skip to content

Commit

Permalink
Add to_char
Browse files Browse the repository at this point in the history
  • Loading branch information
eaolson committed Jun 17, 2018
1 parent ae93c96 commit ae0bbbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ora/xlsx_builder_pkg.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,7 @@ ts timestamp := systimestamp;
t_xxx := t_xxx || '<pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>';
if workbook.sheets( s ).comments.count() > 0
then
t_xxx := t_xxx || '<legacyDrawing r:id="rId' || ( workbook.sheets( s ).hyperlinks.count() + 1 ) || '"/>';
t_xxx := t_xxx || '<legacyDrawing r:id="rId' || to_char( workbook.sheets( s ).hyperlinks.count() + 1 ) || '"/>';
end if;
--
t_xxx := t_xxx || '</worksheet>';
Expand Down

0 comments on commit ae0bbbf

Please sign in to comment.