Tagged Questions
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.
6
votes
2answers
3k views
Can Excel interpret a cell as HTML?
I'm using Aspose.Cells to build an Excel document programmatically. This works great. One of the cells, though, is a block of raw HTML. I'm wondering if it is possible to tell Excel (in any fashion, ...
2
votes
3answers
143 views
Is there a way to get Worksheet from the Cell in Aspose Cells?
I'm looking for something like myCell.Parent or myCell.Worksheet to get the Worksheet object of a Cell in Aspose cells for .net. I didn't see any property on the Cell class that refers the Worksheet. ...
1
vote
1answer
37 views
ASPOSE.Cell -How to read the calculated value from a AddIn Formula Cell
I am using ASPOSE.Cell Component to read an Excel.
I am able to read normal values from cells. But in my excel few cell values are driven by Add-In formulas, which i am not able to read. When i read ...
1
vote
1answer
83 views
setting one worksheet cell range reference to another worksheet using aspose.cells or MS-Excel
I want to set one worksheet cell range reference to another worksheet using aspose.cells or MS-Excel.For example i have two worksheet(wrk1 and wr2). I have some data on wrk1 and wrk2 is balnk.Now on ...
0
votes
0answers
46 views
Read XML to Excel and back (maintain relationships)
Okay so I have the ability to write the XML to an excel file pretty easily (using Aspose.Cells) so that isn't the problem, I just need to figure out how I should write it into Excel so that I can ...
0
votes
0answers
36 views
ASPOSE.CELLS : Why does a simple Workbook.Save throw a Null Reference Exception?
I'm using Aspose.Cells DLLs Version 7.0.0.0 on 64-Bit Windows 7 with .NET 4.0 on my machine. It does work on my friends machine, which is running 32-bit windows 7 also with .NET 4.0 - I suspect ...
0
votes
1answer
155 views
Dynamically set column in sum formula using aspose.cells
I am use aspose excel export. I am setting formulla in .net.
I want sum of two cells value in third cell. like
excelbook.Worksheets[0].Cells["A2"].R1C1Formula = "=SUM(R1C1,R1C2)";
but i want to ...
0
votes
1answer
53 views
how to export an image into an Excel file without Excel installed (using ASP.Net/VB.Net)
I need to export Chart(image) and grid (tabular) row data into excel file. I can not use automation because Office tools are not installed in my server. I've found a bunch of free/proprietary tools ...
0
votes
2answers
176 views
Can't set sparklines in Excel file
I'm working with Aspose Cells 2.4 for Java and I'm having some trouble setting sparklines. This is the code:
CellArea ca = new CellArea();
for (int k2=5;k2<=100;k2++){
...
0
votes
4answers
181 views
Are there any third-party tools which allow importing XML data into Excel?
We are currently working on an application that has been using COM Interop in C# to import data into an Excel workbook. This data is fairly complex and lengthy, so we have been using the Import from ...
0
votes
1answer
256 views
How to import a segment of html into Excel
Requirement:
1.I need to export a table as a excel file.
2.I render it in a html page at first. I have a button to export to html.
My opinion:
1.I get the html from page:
...
0
votes
2answers
224 views
Aspose Cells Numeric Formatting With Processed Datasource
I am new to Aspose Cells, having inherited a project that uses it. A requirement was added that numeric values in cells be actual numbers - they were formerly text.
So, I changed calls in the code ...
0
votes
1answer
438 views
Aspose-Cells: How do I evaluate a formula?
Given the following code:
using Aspose.Cells
// {...}
Workbook workbook = new Workbook();
Worksheet virtualWorksheet = workbook.Worksheets[0];
virtualWorksheet.Cells[0, 0].Formula ="=1<2";
...