.NET version of the Apache POI (Java) project

learn more… | top users | synonyms

0
votes
0answers
30 views

ProtectedView error message when generating excel with NPOI excel library using C#, MVC

I am generating an excel file using NPOI excel library for .Net. I am using VS 2012, C#, MVC 4, razor html. After generating excel with data from database, when I open the file, it displays below ...
0
votes
0answers
91 views

Is there any FREE Excel library (for *.xls file) which is better than NPOI?

This is possibly duplicated, but I've just heard them talking more about NPOI, they suggest NPOI and it looks like the best one for *.xls file, I think it may be the best in performance but it's ...
0
votes
1answer
66 views

Font error in formula box in Excel?

I have an Excel file (.xls), it has about 1400 rows, there are rows which are displayed in correct font (both in sheet cells and in formula box which is docked at top). However there are some rows ...
0
votes
0answers
115 views

Does NPOI have support to .xlsx format?

Will NPOI DLL recognize .xlsx file? Currently I'm using NPOI 1.2.5 version DLL for Microsoft Excel 97-2003, but I need to access Excel sheets of extension .xlsx also. Will NPOI support the above? ...
0
votes
0answers
97 views

Can't edit the existing Excel file with NPOI?

I've tried creating a new Excel file with NPOI and it works OK, reading (only) an Excel file is also OK. However now I want to open an existing Excel file and append some rows on it, it's crashed ...
0
votes
1answer
100 views

CellStyle applied to all cells in the Worksheet unexpectedly - NPOI?

I don't understand why this can happen, first I tried applying a bold text to my column headers in the first row, then I want to set my header cells' borders to MEDIUM, but this MEDIUM border style is ...
0
votes
1answer
34 views

NPOI: Edit cell

I am using the following code to edit cells of an excel file but I dont see my changes in the escel file. using (var fs = new FileStream(reconnFileName, FileMode.Open, FileAccess.ReadWrite)) ...
0
votes
0answers
45 views

NPOI and setCellFormula(): decimal-separator is cutoff

I've a serious problem copying this formula with NPOI 1.2.5 from one cell to another with C#: The original cell contain this: =IF(H21>(H23*0.9997);IF(H21<(H23*1.0003);"OK";"Errore");"Errore") ...
5
votes
1answer
235 views

Read XLS with Protected Book and Sheet via HSSF.EventUserModel

END GOAL: Efficiently (in one pass) read all CellRecords on a huge (30,000+ row), protected Worksheet. Problem: Using the HSSF.EventUserModel, how can I read all Records (including CellRecords) for ...
0
votes
1answer
359 views

how to read excel files by (column, row) with npoi and VISUAL BASIC

I'd like to be able to ready an excel file by column index, row by row, in VB .NET. I can do it extremely easily with python XLRD, and with vb6 via "ADOX.Catalog" Basically, this should be enough ...
0
votes
1answer
227 views

Why does the content type of an uploaded excel file changes to application/octet-stream on mac in ASP MVC 4.0?

I'm having a little problem! I'm designing an asp mvc 4 application for a client which should import and process an excel file. To process the excel file I use the C# version of the NPOI framework. ...
0
votes
1answer
125 views

NPOI Export DateTime issue

I made export with NPOI. I set cell value: row.CreateCell(6).SetCellValue("This is date string"); Now, excell see this as a text field and I need to excel set cell type to DateTime. Is this ...
0
votes
1answer
730 views

C#. xlsx date cell import to DataTable by NPOI 2.0

I'm tried to convert .xlsx file to DataTable format by using NPOI 2.0 library. It's OK, but I have a problem with convert to string date cell. When I try to use construction like ...
0
votes
0answers
115 views

How would I go about converting NPOI.SS to NPOI.XSSF?

I'm currently attempting to replace the need to use the Excel Interop libraries but moving to NPOI. I am hitting a bit of a snag at the moment with the following code: XSSFSheet SheetName = ...
1
vote
1answer
395 views

How to read excel cell format (both .XLS & .XLSX)

I need to read the formatting information available in a cell in excel. The excel file might contain an cell with text like "Some sample text". Each word would have a different formatting information. ...
1
vote
1answer
217 views

Change macros text in Excel programmatically

I've got about thousand of Excel (xls, old format) files spread out across many folders on the hard-drive. These files have the same macros that connects to a database. And the macros contains ...
2
votes
2answers
139 views

IIS memory usage won't go back to normal after generating large document

In my ASP.NET MVC application I am using the NPOI framework to generate a rather large excel file (30-100mb) http://npoi.codeplex.com/ After generating the document, i save it to a memorystream, and ...
1
vote
0answers
172 views

How to manipulate chart in generated excel by asp.net, with NPOI?

I'm not sure is it possible to fix it but I have following situation: I have some DataTable with some data, and I need to prepare chart which use this data. I have read that the only possibility to ...
0
votes
1answer
199 views

Insert image in xls file using npoi api?

I want to insert images in excel workbook's sheet. My code for inserting an image is this. I do not know where I am getting it wrong. The code runs fine without any error/exception. ISheet sheet = ...
0
votes
0answers
163 views

NPOI - Invalid row number (65536) outside allowable range (0..65535)

I was using NPOI plugin in my MVC3 project. Everything is working fine with NPOI Excel Export plugin. But When i try to download the file with more than 65535 records then it shows some exception. Is ...
0
votes
0answers
105 views

NPOI WorkbookFactory in VB.net

I'm trying to read a xlsx file with NPOI. My current application is in VB.net and it appears both XSSF and WorkbookFactory are not in version 2.0 of NPOI. I've found a few examples, however the ...
0
votes
0answers
242 views

VB.net NPOI read XLSX

I have recently reference NPOI v2 Alpha. My goal is to read in a xlsx file to do further parsing. From what I've read on NPOI's site, I should be able to achieve this via NPOI.XSSF or possibly the ...
1
vote
0answers
69 views

NPOI does not evaluate 3d formula

I'm using NPOI to read data from Excel 2003 files. These files contains formulas like this SUM('1:2'!$C$17). NPOI recognized such formulas like SUM('1'!$C$17) (w/o sheet 2) and evaluate invalid ...
3
votes
2answers
187 views

How to recast objects from a Dictionary(Of String, Object) in VB.Net

I have a program that runs a bunch of different types of tests. The each test has a bunch of different settings that can be set. I am trying to export the settings that were used for each test to an ...
0
votes
0answers
147 views

Generate dynamic Excelchart with NPOI

i have a problem about generating a chart with NPOI. I have found this documentation: http://poi.apache.org/apidocs/org/apache/poi/hssf/usermodel/HSSFChart.html Which shows the functionality of this ...
0
votes
1answer
970 views

export Excel to DataTable using NPOI

I want to read Excel Tables 2010 xlsx using NPOI and then export data to DataTables but don't know how to use it. Can anyone show me step by step how to export Excel to Datatable? I have downloaded ...
1
vote
0answers
155 views

Combining Multiple Excel Spreadsheet From SSRS In C# Console App

I am trying to combine a directory of Excel Workbooks that have 1 worksheet each which I generated from SSRS into one workbook without losing its formats and Cell Styles and merged cells. I am trying ...
0
votes
1answer
133 views

NPOI number wrong format read

I have an xlsx file and try to read numbers from it and put them in another file. Problem is, that some numbers are read incorrectly and i have no idea why. For example: Number in excel | Number ...
0
votes
1answer
465 views

NPOI - saving workbook created from template file

It is my 2nd time dealing with NPOI. I'm creating a workbook from a template excel file like this. string dldir = AppDomain.CurrentDomain.BaseDirectory + "Download\\excel\\"; string ...
0
votes
1answer
537 views

MS Word, using NPOI library

I would like to use NPOI library to get image from Word file (Doc [97-2003]). I want to HWPFDocument class, but i can not find namespace, where this class is. I write code in c#.
2
votes
1answer
775 views

NPOI with OOXML Excel password not working

I am having an issue using the OOXML library when attempting to read encrypted 2007 Excel documents. The password that I send to the DecryptToStream method is sending back a "Password not valid" ...
0
votes
0answers
75 views

can NPOI have a function like “RegisterXLL”?

By using NPOI, we can create a worksheet easily, and we do not need to add a Excel Library. But can NPOI allow us to register XLL, so that I can use my own function built in .xll? I want to use NPOI ...
0
votes
1answer
439 views

Border for created cell with npoi

I Have an Excel File AS Template(.xls),I need to feel this template with npoi. my Problem is,when i create a row ,and a cell in it,i try to set border to cell. But entire excel file has Border, while ...
1
vote
1answer
120 views

Excel parser Library in Silverlight

Whether NPOI not supported in Silverlight applications? I'm getting the following error. You cannot add a reference to NPOI as it was not built against the Silverlight runtime. Silverlight project ...
1
vote
1answer
91 views

Is there any free library in .Net support deleting entire excel column?

I would like to find a library which support deleting entire column and row in excel. Unfortunately, EPPLUS and NPOI haven't supported this and their road maps haven't mentioned about this feature. ...
0
votes
0answers
213 views

NPOI.HSSFWorkbook.GetName(rangeName) fails

The second line fails: HSSFWorkbook _workbook = new HSSFWorkbook(new FileStream(filename, FileMode.Open, FileAccess.Read)); Name name = _workbook.GetName("workbookName$A1:A65535"); Originally, I ...
0
votes
0answers
344 views

Unable to Save Excel File using NPOI Library

I am having some difficulties exporting excel file using NPOI dll through ASP.NET page. Basically, I am able to populate the cells with no exception, however right at the few last steps where I need ...
0
votes
1answer
366 views

Removing column of Excel sheet using NPOI(1.2.5.0)

I'm trying to find a column and delete it, but I don't know what a method for remove a column. I tried remove cell, code as below. But I want remove complete column. HSSFRow row = ...
1
vote
0answers
728 views

npoi date format

I am using NPOI 1.2.5.0 , Visual Studio 2008. There is a date column in the spreadsheet. I observed that, if I open file in Microsoft Excel, set size of column to autoset , save it , it goes ...
0
votes
1answer
451 views

Compile error when setting Excel cell to bold when using NPOI 1.2.5.0

We are trying to bold a row in excel , Visual studio 2008, framework 3.5 NPOI 1.2.5.0 - getting compile error Following is the code snippet, ICellStyle style1 = templateWorkbook.CreateCellStyle(); ...
0
votes
3answers
894 views

NPOI Library will not insert rows/cell data when used in a loop

I am using the NPOI library within a c# console application to write some information to excel. The problem i seem to be facing is that the code will not run from within a a for loop (if i take the ...
1
vote
0answers
393 views

NPOI copy range to another worksheet

I am using NPOI to work with Excel in C#. But there is no full documentation how to work with it. I need to copy some range to another worksheet. Does anybody know, how to do this? Maybe you are using ...
1
vote
0answers
603 views

How to adjust rowheight as per the contents in NPOI

Using Npoi I am trying to achieve something like this in excel |Sample Text |-------------------------------------| |Sample Text1 |Sample Text2 |Sample Text3 ...
0
votes
0answers
388 views

Insert an image to cell by NPOI

I am using NPOI to generate excel file. My requirement is insert an image to cell. However i having a problem nw. How can i insert an image in only one cell by using NPOI?Did anyone solve this trouble ...
1
vote
2answers
11k views

C# create/modify/read .xlsx files

I am looking for a way to create, modify, read .xlsx files in C# without installing Excel or creating files on the server before giving to the user to download. I found NPOI http://npoi.codeplex.com/ ...
0
votes
1answer
82 views

NPOI 1.2.4 ignores IComment.Visible value

I am trying to set a comment on a cell, but it is always visible no matter if I set IComment.Visible = false. In NPOI 1.2.3 everything worked as expected but in NPOI 1.2.4 this issue occured. Here's a ...
0
votes
2answers
517 views

Appending =“0xxxx” to excel cell while exporting using NPOI to maintain leading zero, or how to set cell as text

I am trying to maintain the leading zeros while exporting a column holding phone numbers to excel using NPOI in an asp.net mvc 3 application. I have read here; ...
2
votes
5answers
1k views

Non-commercial C# Library to format Excel?

I have a list of reports that are exported to excel through some reporting services, and on my server i need to loop through these spreadsheets and perform additional formatting e.g. 1) hide columns ...
0
votes
0answers
346 views

NPOI insert row like excel

How can I use NPOI to insert a row like excel? The excel insert command copy the format for the upper row Thanks!
3
votes
1answer
993 views

MVC3 return File action causes intermittent Excel program error

I have a problem that closely relates to this problem Microsoft Excel Error: "There was a problem sending the command to the program." whereby opening Excel gives There was an error sending ...

1 2