Re: How to export Mathematica tables to Excel files?
- To: mathgroup at smc.vnet.net
- Subject: [mg28609] Re: How to export Mathematica tables to Excel files?
- From: "Paul Lutus" <nospam at nosite.com>
- Date: Wed, 2 May 2001 03:37:02 -0400 (EDT)
- References: <9cldhc$18c@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
"Neri Kafkafi" <NKafkafi at intra.nida.nih.gov> wrote in message news:9cldhc$18c at smc.vnet.net... > Does anybody knows what is the best way to export from mathematica tables > that can be read by Microsoft Excel? You can create a comma-separated table file directly readable by Excel. Like this: data = Table[{x,x^2,x^3,x^4},{x,0,20}]; Export["data.csv",data]; Now read the file with Excel. Excel will know what to do. -- Paul Lutus www.arachnoid.com