PostgreSQL Query to Excel Sheet
I need to export some data from PostgreSQL to Excel (quick customer wish), and the last time Excel had serious problems opening or importing…
167 expert-verified Q&A posts in this category, sourced from the top-voted answers on Stack Overflow.
I need to export some data from PostgreSQL to Excel (quick customer wish), and the last time Excel had serious problems opening or importing…
If I select a cell containing a formula, I know I can drag the little box in the right-hand corner downwards to apply the…
I am creating an excel report using data coming from mssql server in my asp.net application. Here is my method: [WebMethod] public static string…
I have an Excel 2007 spreadsheet that I edit with the OpenXML SDK 2. I remove some rows etc. I would like to know…
I'm using the following code: <?php $data = $_REQUEST['datatodisplay']; header("Content-Type: application/vnd.ms-excel"); header("Content-Disposition: attachment…
I'm trying to find the dimensions of an Excel table using C# by finding the first null cell within the first column (which consists…
How can I get the key of a dictionary by passing the index value? I'm trying: If rs.Fields("NM").Value = dictNM.key(0) that is, I want…
How do I change just the year component of a date using Excel formulas? example: 12/31/07 --> 12/31/11
In Excel (2003), I want to limit the selection of values in a cell to allowable values from another spreadsheet. For example, in the…
I have written a procedure that will open a xls from a local disc, refresh the data in it and then save it again.…