How do I programatically interface an Excel spreadsheet?

后端 未结 6 766
半阙折子戏
半阙折子戏 2021-01-13 15:53

I have a request for some contract work from an organization that uses Excel as a database and wants to do some work on the Excel data via a real database. (Yeah, I know, ne

6条回答
  •  不思量自难忘°
    2021-01-13 16:33

    Excel is a 'COM Capable Application' and as such you can use COM to access and manipulate the data in an Excel document. You don't say what platform you are using - but if it's .NET then it's really very easy. See http://support.microsoft.com/kb/302084 for how to get started with C#.

    If you're not using .net then any language that can interact with a COM component will work.

提交回复
热议问题