Questions tagged [aspose-cells]

Aspose.Cells is a spreadsheet component that allows .NET and Java developers to embed the ability to read, write, convert and manipulate Excel spreadsheets into their own applications without needing to rely on Microsoft Excel.

Aspose.Cells is a spreadsheet component that allows .NET and Java developers to embed the ability to read, write, convert and manipulate Excel spreadsheets into their own applications without needing to rely on Microsoft Excel.

304 questions
-1
votes
1 answer

How can I get PivotTable Row and Column labels to change from their default value using Aspose Cells?

I am creating row and column pivot fields like so: pivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType.Row, DESCRIPTION_COLUMN); pivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType.Column, MONTHYR_COLUMN); This works, but uses…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
-1
votes
1 answer

Why am I getting a Type Mismatch when assigning a Worksheet to a Worksheet var?

I am trying to incorporate Aspose Cells for .NET into this class that is using Excel Interop (rather than rewrite the whole thing to use Aspose Cells, which I am just now trying out, I want to at least start with a hybrid approach). The problem is…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
-2
votes
1 answer

How can I preview a excel file from server in webpage?

I'm writing a website that allow user upload excel file, if it pass the validation, user can convert the content into database, otherwise the website will tell user where is the problem, which cells of excel file is wrong. So I'd like to make the…
summer hkg
  • 49
  • 5
-2
votes
1 answer

im getting following exception when doing following code: java.lang.StringIndexOutOfBoundsException

//for loop for traversing rows for (int i = 1 ; i < roorws.getCount() ; i++) { // for loop for traversing columns for (int j = 1 ;j
VJay
  • 21
  • 3
1 2 3
20
21