From: Li Chen Date: 2006-12-19T10:10:13+09:00 Subject: Re: parseexcel > Hannes Wyss wrote: >>> >>> 2) How to select a range >>> of cells, for example, row1,column 1 to row 3,column 10 instead of >>> whole columns or whole rows. >> There are no methods that do directly what you want - you'll have to >> do something like: >> 1.upto(3) do |row| >> 1.upto(10) do |col| >> puts worksheet.cell(row, col) >> end >> end Hi Hannes, Do you know what the advantages of using parseexcel are , compared to export data from excel into text file, parse them,then import them back into excel using spreadsheetexcel? Thanks, Li -- Posted via http://www.ruby-forum.com/.