Questions tagged [parseexcel]

16 questions
0
votes
1 answer

Compare a Spreadsheet cell value with a string in ruby

Hi I am trying to compare a cell value in the spreadhseet with a string as given below. workbook = Spreadsheet::ParseExcel.parse(name) #Get the first worksheet worksheet = workbook.worksheet(0) puts worksheet.cell(4,0).to_s puts…
1
2