开发者

Methods to compile an Excel spreadsheet into a .NET assembly?

I have a spreadsheet that I'd like to compile into a form that I could call from C#.

Naturally, I'd like to be able to change the inputs to the spreadsheet before reading the calculated result.

What is your recommended method?

UPDATE:

To clarify, I want to make an existing Excel spreadsheet available as a web service that is callable from .NET. I can't have a dependency on Excel, as its running on a web server.

UPDATE:

开发者_如何学Go

I used the answer below, and it worked like a charm. Now I can prototype a formula in Excel, then convert it straight into C# and compile it into an assembly.


This question is also covered under Reading Excel Files as a Server Process.


FlexCel API Mate within TMS Flexcel Studio for .NET lets you convert an existing Excel spreadsheet into C# code, recalculate the spreadsheet, and read the result out of a cell using an API call.

See the video tutorial of FlexCel ApiMate. The video states, quote:

ApiMate will convert an Excel file into a C#, VB.NET or Delphi.NET program.

The docs also state:

Recalculation of more than 200 Excel functions.

and:

You can add your own functions on the code to the already big list implemented by FlexCel, and use them as native functions in your report.

UPDATE

Here is clarification from TMS tech support:


Emailed question:

I'd like to do the following:

  1. Convert an existing .xlsx file to C# code, importing data from a database.
  2. Allow FlexCel to recalculate the spreadsheet for me.
  3. Read an answer out of a cell (for use elsewhere in my C# code).
  4. Skip the step of writing the finished .xlsx file to the disk (we don't need this).

In short, I want to use FlexCel as an "Webserver Excel calculation engine", so we don't have to have Excel installed on the web server to perform spreadsheet calculations.

Are the steps I've described possible? Or have I misunderstood how the component works?


Emailed reply:

  1. You can either load the file directly from the database (by opening from a stream) or use the APIMate tool (incuded in the tools folder) to convert the file to c# code.
  2. Yes, FlexCel will recalculate it with XlsFile.Recalc()
  3. Yes, you can read the recalculated values too.
  4. Yes, you don't need to write the answer if you don't want to.

Besides this, for using it as recalculation engine, we have the "RecalculateCell()" method that won't recalculate the full spreadsheet, but only the cells needed to get the value in an specific cell. So, if for example your result is in A1, you can call RecalcCell in A1, and it will recalculate only all cells needed to get the value in A1 (including dependecies, so if A1 has a formula with a2, and a2 with a3, all 3 will be calculated).

There is also a RecalcExpression method, that will recalculate the value of any formula without needing to write it into a cell. So imagine you have a column of numbers at col A, and you want to know the sum. You could use RecalcExpression("=sum(A:A)"); to know the sum, without needing to enter a formula in B1 with the sum and then reading the value of that formula (which you could also do of course)


From Microsoft, there appears to be a framework called Excel Services "Develop A Calculation Engine For Your Apps"

Teaser excerpt:

This article discusses:

  • Excel as a server-based application
  • The Excel Services architecture and APIs
  • Creating managed user-defined functions
  • Building custom solutions with Excel Services

I have never used it, but the info-graphics on the main page are most encouraging.

Thanks for asking this :)


Calc4web converts spreadsheets into C++ code, which can be called from C#, Java, etc.

Quote from website:

Calc4Web gives programmers a better way to get their job done: create a small spreadsheet which holds the logic, and push a button to turn that spreadsheet into C++ code that works on the first try, code that can be called from any language: C,C++, C#, Visual Basic, Java, and any other language which can call into DLLs.

I also suspect that since it compiles the spreadsheet logic to purely native C++ code, it will be very fast compared to Excel (the website states "5,000 times faster").


Check out ActiveMesa X2C, a tool for converting Excel spreadsheets into C# and C++. (Disclaimer: I'm the author.)


For a list of Spreadsheet components that allow you to work with Excel spreadsheets without having a dependency on Excel, see DevDirect Spreadsheet Components.


SyncFusion Essential Calculate.

Quote:

... you can fully load, manipulate, and compute Excel spreadsheets with no dependence on Excel.


There is no way to compile an excel spreadsheet into c# code.They are not in any way the same "thing", In the same way you can't compile this text that you are reading, or a word document into code or an assembly of some kind.

You have to be more specific with the kind of functionality you want to get, which will help you get an answer.

There are several ways (pointed out in other answers here) to allow you to access Excel spreadsheet data and utilize them, but this is in no way compiling them.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜