excel

Excel Macro to Import Rows of Data

I receive emails that have an excel attachment, that has a row of data that I copy and paste to another excel spreadsheet. What I need help on is creating a macro that will automate this process so that when I open the excel attachement from my email I can click on the macro from my other spreadsheet and it will pull the row of data that...

Building an XLA from Source Programmatically

I have a (version controlled) folder of exported components of a VBA addin (i.e. a lot of cls, frm, frx, bas and txt files). Can someone give me a build script (can be a VB script, or something more complicated) that takes the name of this folder and produces a (working) XLA? I know you can programatically modify XLA files (e.g. this q...

how do you make plots with dates in matlab?

Possible Duplicate: Plotting data on time (date) axis in matlab hi, I have 2 column vectors in matlab (I imported the data from excel). the first one is called textdata which contains a list of dates and times as string format: textdata = '1/11/2010 11:40:04 AM' '1/12/2010 11:40:04 AM' '1/13/2010 11:40:04 AM' the ...

ConnectionString For Getting An Excel File Problem

Possible Duplicate: ConnectionString For Getting An Excel File Problem hi my Dear Friends : in have an Excel File Named (a.xlsx) in A Folder Named (ExcelFiles). ExcelFiles Foldre Is in the root Of project. so my connctionstring for getting excel file data is like this : <add name="xlsx" connectionString="Provider=Microsof...

Backwards Calculation of variable

Given a level starts at 1 And the points to the next level is calculated as (C2 = Level) (C2*100)+((C2-1)*100) What is the formula to get the current level if I supply the points e.g. 810 Points = Level ? I need the formula in C# or Excel. Brain frazzled, I am sure the answer is easy. ...

Cannot read Excel files in SSIS 2008

Hi all, I'm stuck trying to get SSIS 2008 to read an Excel file. Yesterday, I migrated our SSIS project from 2005 to 2008, and though the upgrade said it worked, I cannot get it to read an Excel file. I read online that I needed to upgrade the JET drivers to Office 2007 (AccessDatabaseEngine.exe), which I did. And voila! Everything s...

How Do I read an Excel 2007 spreadsheet with more than 65535 rows?

Here's what my connection string looks like.. m_conn = new OleDbConnection(String.Format("Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties=" + (char)34 + "Excel 12.0;HDR=YES" + (char)34, m_fileName)); When I do a select, I only get 65535 rows back but I know the excel spreadsheet has at least 100,000. How Do I re...

ConnectionString For Getting An Excel File Problem

hi my Dear Friends : in have an Excel File Named (a.xlsx) in A Folder Named (ExcelFiles). the ExcelFiles Folder Is located in the root Of my project. so my connection string for getting excel file data is like this : <add name="xlsx" connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=aaa\ExcelFiles\a.xlsx;Extended Proper...

Do I need to have Excel installed to query spreadsheets using an OleDB Provider?

I am working on some software that uses an OleDB to open a .xls file, query some data, and fill a dataset with the results. I am now looking at using this software on systems that do not have Excel. Will my software still be able to read the spreadsheets? This xls file contains 1000s of configuration settings that my software uses. I...

code to loop through all workbooks in a folder VB

Hi, I have a number of excel (.xls) stored in a folder in a local drive. I need to do some process to every file in this folder. What is the code that will loop through every file open the file Do some processing and then Save & close the file move the file to another folder after processing To be more clear, I want go over every fi...

Tips on debugging into Excel

I've got a library that can export the contents of a VCL grid to XLS format. (Not sure which version of XLS format; that's part of the problem.) It usually works just fine, but in some cases, when I open an XLS that was exported by this library in Excel 2007, it says "Excel found unreadable content in '[myfile.xls]'. Do you want to rec...

Populate a dropdown in word from column in excel and then on dropdown change populate textboxes with related field (VBA)

Hi, I have the following code in a word 2007 macro where I populate a dropdown with customer names from an excel spreadsheet Private Sub UserForm_Initialize() Dim i As Integer Dim cn As ADODB.Connection Dim rsT As New ADODB.Recordset Set cn = New ADODB.Connection With cn .Provider = "Microsoft.Jet.OLEDB.4.0" .ConnectionString = "Data S...

Using 1000 separator when writing Excel

How to use 1000 separator when writing Numbers to Excel Sheet with java? Typical Decimal Formatter forces the double value to String. I want the value to be in format 000 (space) 000,00 ...

how to insert(embed) a file object into excel sheet in java.

Hi I need to insert(embed) a file object (.txt file) in MS excel sheet using java. The requirement is not to put the contents of .txt file into excel. Instead i need to put the whole file as an embedded object into excel. I am using Apache Poi jar for this. I have seen all the examples present in poi-3.7-beta1 but was not able to find ...

Why does Perl's Win32::OLE complain about "Invalid index" for an Excel worksheet?

Code # get already active Excel application or open new my $Excel = Win32::OLE->GetActiveObject('Excel.Application') || Win32::OLE->new('Excel.Application', 'Quit'); # open Excel file my $Book = $Excel->WorkBooks->Open($file); # select worksheet number. Default is 1 (you can also select a worksheet by name) print "worksheet $wo...

.NET: Import Excel files, which are a embedded in a resource file, into a dataset.

I have a resource file with some embedded Excel files. How can I import these files into datasets? I found several libraries / code snippets which works for files, which are on the harddisk, but nothing if the files are part of a resource file. ...

How to use Excel Interop on lower version (.Net) ?

In C#, I'm using the Microsoft.Office.Interop.Excel reference v12.0.0.0, which (I think) corresponds to Office 2007. I guess that my program won't run on computers without Office 2007 or above ? What should I do ? ...

How to read excel file and convert it to tab delimited file with java

I have a directory where files are constantly updated. I need to read the latest excel file and convert it into tab delimited file. It is under windows. A batch + java solution will work for me. Or if I can use excel in command line programatically that also works ...

How do you export a JasperReport to an Excel file with multiple worksheets?

We have a report that the customer would like to have exported to an excel format where it has multiple worksheets. Essentially the two queries share the same parameters, but everything else is different. In jasper-reports how do you export to an excel file with multiple worksheets (ideally from different data sources)? ...

How do I find which cells are selected on an Excel worksheet?

I need to be able to use C# and Excel interop to determine which cells are selected in a workbook/worksheet. It would be nice if there were something like this defined in Excel: Excel.Range Worksheet.GetSelectedCells(); But I don't find that in any documentation. How can I do this? tia. ...