By: TonyReed
Finally a litle more time to experiment. I have modified it to the following: <workbookPr date1904=”false” dateCompatibility=”true” defaultThemeVersion=”124226″/> Dates seem to be displaying...
View ArticleBy: dieterdaniel
This package is really helpful!! Thanks for sharing it! One question: would it be possible to open an existing XLS to edit data in there?
View ArticleBy: dieterdaniel
Understandable, it’s not the “native” Excel format that PL/SQL is working with. I keep playing around with it. As I’m just starting out more examples would be aprecciated if other people already...
View ArticleBy: Anton Scheffer
@dieterdaniel This package does produces the “native” xlsX Excel-format. But at the moment it can’t produce formulas, graphs or macro’s , just “data”
View ArticleBy: James Van Zandweghe
Hello, Great package and functionality but i think i found a possible bug in the query2sheet function of the package. In that function you have the t_sheet pls_integer variable. you use that variable...
View ArticleBy: Anton Scheffer
Moving the following line in the procedure a couple of lines up will do, no need for overloading new_sheet t_sheet := nvl( p_sheet, workbook.sheets.count() ); So change it to: if p_sheet is null then...
View ArticleBy: James Van Zandweghe
I know. We needed the overload function to get the index of a sheet so we can use that index in the other functions like cell.
View ArticleBy: Stefan Pastrilov
Hello, Is it possible to generate xls file (Office 97-2003) ? Regards, Stefan Pastrilov
View ArticleBy: gilles
Hi Anton, thanks a lot for this very usefull package. I took time to add a personnal “Cursor2Sheet” procedure which works also on Oracle 10 (using XMLType in between I Post it here incase it is of any...
View ArticleBy: Robyn Dyke
Hello, I have the need to add excel formulas to the spreadsheet so that the user can see record counts in the spreadsheet following filtering applied by user post spreadsheet creation. Has anyone...
View ArticleBy: Btissam
Hi , When i tried to install the package it seems that something is missed (package, library..) .For example : “get_font invalid identifier ” or “new_sheet invalid identifier”… Can you help in order to...
View ArticleBy: Anton Scheffer
@Btissam The source consists pf one package specification and one packakage body. If you run them unaltered they should compile OK
View ArticleBy: gilles
Hi Robyn The code I have put into my Post is just an additional procedure to the original package… did you download and compile the package from this site first ? once done you can add my procedure to...
View ArticleBy: Mike Chambers
Robyn, I have added formulas to my cells. Here are the changes I’ve applied: Forgive me if there is a better way to post my changes. This is my first time posting code changes. Mike Chambers...
View ArticleBy: Mike Chambers
Anton – this is is a wonderful package. Thank you very much for sharing this with everyone. I have run into an issue that I wonder if anyone has resolved. After downloading the Excel file, I am unable...
View ArticleBy: euelvis
Mike, You can try something like this in your code: Worked for me in XE 10g(not tested for complex formulas or different return type). I hope is useful. ————————————————————————— /* –Simple test calls:...
View Article