antonscheffer / as_xlsx

as_xlsx: generate an Excel xlsx file from an Oracle database. Or read data from a xlsx. Works on Oracle 11.2, but also on 23c Free
MIT License
16 stars 4 forks source link

Add a data worksheet to precreated excel template #3

Open jgebal opened 3 months ago

jgebal commented 3 months ago

Hi Anton First of all, thanks for creating this tool. I think that it's ease of use is really making it perfect. I would like to ask you about the use case I have.

We use Excel to present data in a nice visual form. The data lives in worksheets: Sheet1, Sheet2, Sheet3 and is a ump of data from specific SQL queries. The sheets with raw data are hidden and another sheet is used to visualize the data.

What I was aiming at is to:

The problem that I am facing at the moment is that I can't really find a PL/SQL Excel generator that would allow me to do this. Our tool that we are using is reaching end of life and I need to find a decent & simple replacement for it.

Would it be difficult to extend the package you have now to work with an existing Excel Workbook instead of populating a blank one each time?

Thanks

antonscheffer commented 3 months ago

Adding a new worksheet or filling an empty sheet would probably be not that difficult.

jgebal commented 3 months ago

Great! Would you be able to do it or provide me with some guidance on where should I start if I would like to do it myself?

antonscheffer commented 3 months ago

Sorry, I don't have time to do it. The easiest way to do it your self will probably be:

U

jgebal commented 3 months ago

Thank you. I will give it a try in spare time and if it works, I'll share the outcomes.