vote up 0 vote down star

After running a model in fortran (95) I end up with some result arrays (and one result matrix). I'd like to move these into excel for reporting purposes. What's the easiest way to do this?

flag

I'm so sorry for your many problems. – Andrew Johnson Oct 26 at 2:46

2 Answers

vote up 3 vote down check

As S. Lott said before me, CSV format is probably the best choice, but actually Excel is pretty clever about file formats. It will usually work with tab separated or space separated data, or even HTML tables. Try copy-and-pasting your data into Excel to see whether it can work it out, before worrying too much about the format.

link|flag
vote up 3 vote down

Fix your Fortran output to be in CSV format. This is easily imported into a spreadsheet.

link|flag
Much better answer than: fortran_model | sed 's/ /,/g' | excel :-) – Adam Liss Oct 26 at 2:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.