View Single Post
  #2 (permalink)  
Old June 15th, 2005, 03:24 AM
Alan-LB Alan-LB is offline
Authorized User
 
Join Date: Mar 2005
Posts: 58
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to Alan-LB Send a message via Yahoo to Alan-LB
Default

Look up "Importing Files" in Excel Help. You may import files into Excel in several formats. For example, on output from Excel, you may have comma delimited fields so that the contents of each cell in a spreadsheet are written to file with a comma separating each value (irrespective of the width of the cell).

For example,
     | Jan | 12 | 34 |
     | Feb | 54 | 98 |

then becomes

     Jan,12,34,Feb,54,98<EOF>

If your program produces output in this format, you can the import it into Excel.

Alan


Reply With Quote