From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,3e6c98a1a7cab60a X-Google-Attributes: gid103376,public Path: g2news1.google.com!news2.google.com!proxad.net!newsfeed.stueberl.de!news-mue1.dfn.de!news-ham1.dfn.de!news.uni-hamburg.de!cs.tu-berlin.de!uni-duisburg.de!not-for-mail From: Georg Bauhaus Newsgroups: comp.lang.ada Subject: Re: import Excel file Date: Mon, 14 Jun 2004 17:36:54 +0000 (UTC) Organization: GMUGHDU Message-ID: References: NNTP-Posting-Host: l1-hrz.uni-duisburg.de X-Trace: a1-hrz.uni-duisburg.de 1087234614 21501 134.91.1.34 (14 Jun 2004 17:36:54 GMT) X-Complaints-To: usenet@news.uni-duisburg.de NNTP-Posting-Date: Mon, 14 Jun 2004 17:36:54 +0000 (UTC) User-Agent: tin/1.5.8-20010221 ("Blue Water") (UNIX) (HP-UX/B.11.00 (9000/800)) Xref: g2news1.google.com comp.lang.ada:1478 Date: 2004-06-14T17:36:54+00:00 List-Id: Tanker wrote: : Hi, : : I want to import data from an ms exel file in my program. Can someone give : me a hint how I can realize that. I already tried to read the exel file as a : text_io and sequential_Io file but it's not possible as Text_IO 'cause it : must be a sequential_IO (or direct_IO) file. The problem with the : sequential_IO is, that i can't figure out how the form and substance of the : file looks like (is it a record, what kind of record(contents)?) Just reading in an Excel file isn't probably promising, because it is not a text file. The structure of the binary data isn't usually known. However, you could try exporting sheets to CSVs, and read these with less effort.