Re: ToExcel
- To: mathgroup at smc.vnet.net
- Subject: [mg28126] Re: ToExcel
- From: "Paul Lutus" <nospam at nosite.com>
- Date: Sat, 31 Mar 2001 02:58:57 -0500 (EST)
- References: <9a1l7p$abk@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
"Robert-Lewis HYDE" <bobhyde at wanadoo.fr> wrote in message news:9a1l7p$abk at smc.vnet.net... > Hello, and thank you for the info on Pure functions.. > > Now for something completely different; > I have a mathematica 2 by n List generated say by Table[ {x, f[x]},{x,1, > n}] ]. > I need to export this to an Excel file. What is the best way ? Copy and paste? Table[ {x,"\t",x^2},{x,1, 8}] // TableForm//ToString 1 1 2 4 3 9 4 16 5 25 6 36 7 49 8 64 Note the tab character between fields. Excel will accept this directly if it is copied as plain text. -- Paul Lutus www.arachnoid.com