The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

vb.net import excel to datagrid

first of all I am really new in programming... could you please help?? Here is my doubt, I have an excel file (excel 2007 ver. 12.0) that I neeed to import to a datagrid view, but I get an error ...
0
votes
0answers
14 views

Rails - Roo “file does not exist” error when using Delayed Job

I'm using the Roo gem to import Excel files, CSV files, etc. The code works great a) on my local box with or without Delayed Job, and b) on Heroku without Delayed Job. Unfortunately when running on ...
2
votes
1answer
177 views

Excel Import to DataSet Breaks When File Is Open

I have a service that I am using for excel file imports, and the implementation is shown below: [Attributes.ImportFileExtension(Extension=".xls")] [Attributes.ImportFileExtension(Extension=".xlt")] ...
1
vote
1answer
81 views

Magento file Uploading in latest version

i used to work on Magento ver. 1.7.0.1. i have found media/import folder for uploading bulk data, but now i installed latest Magento ver 1.7.0.2. in this version i did'nt find import folder in media. ...
1
vote
1answer
190 views

Importing data from Excel into Access using DAO and WHERE clause

I need to import certain information from an Excel file into an Access DB and in order to do this, I am using DAO. The user gets the excel source file from a system, he does not need to directly ...
1
vote
0answers
325 views

External table is not in the expected format when excel file is closed

I have seen there is another post with many votes on this issue, but it doesn't solve my problem (as someone commented that it has not solved his either). So my import works well with an xls file, but ...
0
votes
0answers
92 views

Can I import data from excel sheet into instruments UIAutomation?

I want to write script for a screen where there are two fields and I just want to test with different possibilities of values for those fields, whether it will navigate to further screen. But ...
0
votes
1answer
120 views

import excel doc, the display in proper format

Just trying to increase my programming ability atm so any help would be much appreciate. In my asp.net project i've used (aspx) <asp:Panel ID="Excel" runat="server"> </asp:Panel> ...
0
votes
1answer
258 views

Opencart import/export tool uploads XLS file, stops without error

I'm using the Opencart import/export tool (the one written by Mr. Neuhoff) to update our product database. I have not had any issues with it until just now... when I try to upload more than 12,000 ...
0
votes
2answers
516 views

How to import Excel sheet data into my iphone App.

iam Working on a application where we can import contacts from facebook,linkedin,gmail etc,.. Same like i have an excel sheet with contact numbers and email Id's ,i need to import those contact ...
1
vote
0answers
553 views

import excel 2010 into sql 2010

using sql 2008 r2, vb.net 2010, excel 2010, file in xls mode I am wanting to import an excel spreadsheet programicly inot sql 2010 via vb.net i have 2 versions of the spreadsheet. first is the ...
0
votes
1answer
361 views

Adding a column during Excel import into SQL Server table

I have a script that creates a table as well as a column for tracking the filename that is responsible for the import. select *, 'file1.xls' as 'Filename' into dbo.SQLServerTable FROM ...
2
votes
3answers
339 views

How to access hidden column in excel using c#

I'm using Excel.Interop This is the code for traversing through the excel cells : for(i=1 ; i< 10; i++) { for (int j = 1; j < 10; j++) // 10 is no of columns(static) ...
0
votes
1answer
480 views

Importing Excel file into SQL Server 2008

I have an Excel file with these columns: NatureAttitude Intelligence Career Health Other Skill While importing that Excel file through import wizard I am getting the following error Executing ...
1
vote
1answer
387 views

CakePHP 2.1 excel file export and import to database

I am using cakephp 2.1 and developing an application which needed more data. I want to use excel file for import and export. Please suggest me some solutions to get it done.
0
votes
1answer
302 views

Reading Excel data and showing in table format in MVC view

I am using MVC3. I want to read data from Excel sheet which will be saved inside one folder of my application. Row by row I have to validate the data. Finally have to show the same in tabular form on ...
0
votes
1answer
2k views

Read excel file content in wpf application [closed]

I want to read excel file in my C#,WPF application. which is running on different machines having different versions of excels(some has excel-2003 while some machines have excel-2007 etc and some ...
1
vote
2answers
216 views

import 3 digit field with leading zero

ASP.NET, C#, MVC 3, Code First project I'm trying to import data from an Excel spreadsheet. I've formated all cells as Text. A sample row in the Import worksheet is as follows. Account ...
2
votes
1answer
832 views

R - Import & Merge Multiple Excel Files And Add Filesource Variable

I have used R for various things over the past year but due to the number of packages and functions available, I am still sadly a beginner. I believe R would allow me to do what I want to do with ...
0
votes
1answer
286 views

I want to Read Multiple excel sheets in one file without using OLEDB in C#

Im reading an Excel document from C# Windows Form.. There are 25 worksheets in Excel Workbook.. i can read 1st worksheet successfully.. But when i change it to worksheet 2.. it won't working at all.. ...
2
votes
2answers
197 views

Horizontal data into Vertical

I have horizontal table (Table1) and I need it to transform it into (Table2) Table1: CEO SALESMAN PRODUCT(1) PRODUCT(2) PRODUCT(3) PRODUCT(4) PRODUCT(5) ... PRODUCT(N) ------ ---------- ...
0
votes
1answer
4k views

Import data directly from Excel sheet into SQL Server table

I have multiple table's data in single Excel sheet with exact column names, now I want to insert that data into my SQL Server 2008 tables. For example: I have one table Student which has columns ...
0
votes
0answers
24 views

Datatypes for excel imports

I have an upload form where users are ulpoading a CSV. It seems like the varchar datatype is having problems recording some of the fields properly. What would you say is the best datatype to use for ...
-1
votes
6answers
1k views

Import CSV, exclude first row

I'm importing my csv fine now except one thing, how do i get the import to ignore the data in the first row? Employees will be uploading the same format which has the column names in that first row. ...
0
votes
1answer
1k views

Issue in importing excel data in access if worksheet contains dropdown list

I have created an excel worksheet in a such way that the user can insert some rows (max 100). The value of some fields are chosen from a dropdown list. I put the formula on all 100 rows. The ...
0
votes
1answer
346 views

Import from excel to an access table with more fields (vba)

I succeed in importing an excel worksheet in an access table when an user clicks on a button (by using VBA): DoCmd.TransferSpreadsheet [Transfer Type], [Spreadsheet Type], [Table Name], [File Name], ...
0
votes
1answer
170 views

Excel Import from 3rd Row without formatting

I want to import the excel file which has dynamic columns(columns will be vary file to file). Situation is 1 .In the first row it has table name and date. 2. in second row it contains the column ...
1
vote
3answers
2k views

How to move Excel data to Access using VBA and late binding (no ADO, no DAO) - DoCmd.TransferSpreadsheet runtime error 424?

I am trying to create a macro that will regularly move 25,000 - 35,000 lines in Excel, to an Access database. As I understand it, if I'm working in an environment where people using the macro have ...
0
votes
0answers
388 views

import excel xls and xlsx files into datatable in asp.net server app

I have an ASP.NET app that needs to import xls and xlsx files to a data table. So far I have been using OLEDB with the ms ACE drivers (4.0 and 12.0). This works most of the time, but I need to install ...
0
votes
0answers
85 views

SQL errors when importing excel from remote machine

I am running a excel import from a remote machine to a SQL box. When I run the import I get the following errors: Msg 7399, Level 16, State 1, Server Server1, Line 2 The OLE DB provider ...
1
vote
1answer
3k views

Could not load file or assembly 'Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c'

When I am adding foll. code but on server its showing error. Code - object oMissing = System.Reflection.Missing.Value; Microsoft.Office.Interop.Excel.ApplicationClass xl = ...
1
vote
2answers
524 views

Excel data column name changing when loaded into dataset using Microsoft.ACE.OLEDB.12.0

I have an excel sheet with 18 columns. In that 5 columns have same column name CALL_REASON. But when i load that excel sheet into a dataset using Microsoft.ACE.OLEDB.12.0. The column names in dataset ...
0
votes
0answers
66 views

Excel.Range doesn't give the correct output

I'm a beginner in C#.NET. I'm reading an excel file with multiple tabs. Excel.Range is the one which im using to get the range of the used cells in the worksheet. I tried both the below methods: ...
0
votes
0answers
815 views

The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. (already tried the solution sugested but no help)

I have tried installing Microsoft access database 2010 but still its giving the same error. Any HELP Please!! string path = "C:\\qabulkload.xlsx"; string xConnStr = ...
0
votes
1answer
2k views

how to read excel file using struts2 Application while it converted to .tmp

this is my JSP page... to upload EXCEL file...where I need to uplode 2 different excel file for different action... I hope the tag I is self explanatory... <body> <s:actionerror /> ...
1
vote
1answer
480 views

How to populate listbox from excel using C#

I have an windows application. I browse for the file and select the excel file using OpenFileDialog control. The excel file contains email id's in column A. I want to populate the list-box with excel ...
0
votes
3answers
7k views

Import Excel file into Microsoft SQL Server using C#

I have a C# program that I want to import an Excel file into Microsoft SQL Server 2008 R2. Can someone give me a link or tutorial where I can fully understand on how to this? I've been doing this ...
0
votes
1answer
1k views

Ruby on Rails - Import Data from SQL file or Excel file into database via rails

I Can't Find What I'm Looking For? I have data from excel, i will import it into database via rails. fields are usernames and passwords, file name is member.xlsx <%= form_for @member do |f| ...
4
votes
1answer
2k views

How to import an Excel file into Access database, using delphi

Im writing a database application, using Delphi and need to import data on a excel sheet and save it in a access database. I have no idea how to do this, what components to use, or if it is even ...
0
votes
2answers
961 views

oracle request (how to import data excel to oracle)

What are the best and/or easiest methods for importing data from Excel (.xls) into an Oracle database? Please, kindly clarify with any code examples you can. Thanks in advance for your valuable ...
0
votes
1answer
687 views

How to import data from one column of Excel to listbox using C#

I have an openFileDialog tool. I will choose a excel file from my computer and my programme read a column (for example A column) and write my listbox on GUI. How can i do it via OleDB? I am new at C#. ...
1
vote
0answers
315 views

Why doesn't my .csv preserve embedded carriage returns/line feeds?

I have a .csv. I have column that is being uploaded to an 'ntext(null)' field type in SQL Server 2008 (Express). Within this column there can be data with free text with embedded char(10) and ...
0
votes
2answers
550 views

How to Import Dirty Excel through c# having data truncation type guessing

I am importing some dirty excel files having more than 2lac records from sheet using the SQL bulk copy method through C#. Problems: I am reading the data through an OleDbDataReader which has a Type ...
0
votes
2answers
2k views

Cannot import data from excel 2003 to database using openrowset function

This is my laptop spec : OS : Windows 7 - 64bit , Database : SQL SERVER 2008 R2 , Microsoft Office : Microsoft Office 2007, my problem is : When i run my procedure to import data from excel 2003 ...
4
votes
1answer
601 views

Change Base 1 Array to Base 0 Array

I'm retrieving data from Excel and would like to keep my arrays 0 based but Excel returns 1 base. Is there a fairly simple way to return change the array from 1 to 0 base? Or do I just need to create ...
0
votes
5answers
622 views

Importing data into MySQL database

I've had a look at a number of programs but haven't found a solution- I have a database in mySQL which I want to fill with data from an Excel spreadsheet. The database has a number of fields which ...
0
votes
1answer
366 views

Error while importing excel to datatable in C# windows forms

I have an excel sheet and each column in the excel sheet has different datatypes. One column in the excel sheet has values like **Column name** 6% 10% 15% <blankvalue> <blankvalue> ...
10
votes
1answer
10k views

Text was truncated or one or more characters had no match in the target code page When importing from Excel file

I have an excel file with four text columns: one of them is called ShortDescription which has the longest value. I created a table in SQL Server 2008 database, with four columns and the ...
1
vote
1answer
1k views

Use Excel import with entity framework while inseting records

i am using nopcommerce 1.9 and in creating discount i have the following code discount = new Discount() { DiscountTypeId = (int)discountType, ...
0
votes
3answers
517 views

Comma getting removed in dataset after importing data from excel to Dataset

i am using Vs 2008. We have one functionality where we import excel file,Now excel file can contain numeric data with comma,.However when look at Dataset for same numeric column Commas are getting ...

1 2 3